IJdt.cs 167 B

12345678910
  1. 
  2. namespace LJLib.Jdt
  3. {
  4. public interface IJdt
  5. {
  6. void AcceptTotal(int total);
  7. void Inc(int value);
  8. void SetMsg(string value);
  9. }
  10. }