IFact.cs 213 B

1234567891011121314
  1. using System;
  2. namespace ExpertSystemPCL
  3. {
  4. public interface IFact
  5. {
  6. String Name();
  7. Object Value();
  8. int Level();
  9. String Question();
  10. void SetLevel(int p);
  11. }
  12. }