INumericWatcher.cs 95 B

1234567
  1. namespace Model
  2. {
  3. public interface INumericWatcher
  4. {
  5. void Run(long id, int value);
  6. }
  7. }