FtpFileInfo.cs 656 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Renci.SshClient.Common
  4. {
  5. public class FtpFileInfo
  6. {
  7. public string Name { get; set; }
  8. public string FullName { get; set; }
  9. public DateTime? CreationTime { get; set; }
  10. public DateTime? LastAccessTime { get; set; }
  11. public DateTime? LastModifyTime { get; set; }
  12. public ulong? Size { get; set; }
  13. public uint? UserId { get; set; }
  14. public uint? GroupId { get; set; }
  15. public uint? Permissions { get; set; }
  16. public IDictionary<string, string> Extentions { get; set; }
  17. }
  18. }