view Implab/ICancellable.cs @ 224:1ba2127cfcd8 v2

Слияние с default
author cin
date Tue, 22 Aug 2017 12:45:01 +0300
parents 0fa293bb1351
children
line wrap: on
line source

using System;

namespace Implab {
    public interface ICancellable {
        void Cancel();
        void Cancel(Exception reason);
    }
}