1
0

FileOperationEventArgs.cs 390 B

12345678910111213141516
  1. using System.Runtime.InteropServices;
  2. namespace WinSCP
  3. {
  4. [Guid("FF8D5772-2653-4C9B-870E-4C5EF8F55673")]
  5. [ClassInterface(Constants.ClassInterface)]
  6. [ComVisible(true)]
  7. public class FileOperationEventArgs : OperationEventArgs
  8. {
  9. public string FileName { get; internal set; }
  10. internal FileOperationEventArgs()
  11. {
  12. }
  13. }
  14. }