ICancelable.cs 101 B

1234567
  1. namespace PaintDotNet
  2. {
  3. public interface ICancelable
  4. {
  5. void RequestCancel();
  6. }
  7. }