IFileTransferProgressEvents.cs 171 B

12345678
  1. using SmartCoalApplication.Base;
  2. namespace SmartCoalApplication.SystemLayer
  3. {
  4. public interface IFileTransferProgressEvents : IProgressEvents<string>
  5. {
  6. }
  7. }