StorageFileInfoes.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Flyinsono.DBCopy.Tool.Entities
  7. {
  8. internal class StorageFileInfoes
  9. {
  10. public string Id { get; private set; }
  11. public DateTime CreateTime { get; private set; }
  12. public DateTime UpdateTime { get; set; }
  13. /// <summary>
  14. /// Internal url for storage server
  15. /// </summary>
  16. public string InternalUrl { get; set; }
  17. /// <summary>
  18. /// Gets the Token of this StorageFile.
  19. /// </summary>
  20. public string Token { get; set; }
  21. /// <summary>
  22. /// Gets the Path of this StorageFile.
  23. /// </summary>
  24. public string FileName { get; set; }
  25. /// <summary>
  26. /// Gets the folder name of file.
  27. /// </summary>
  28. public string FolderName { get; set; }
  29. /// <summary>
  30. /// Gets the sub folder name of file.
  31. /// </summary>
  32. public string SubFolderName { get; set; }
  33. }
  34. }