NewStorageFileInfo.cs 740 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. namespace VidFilesUpgradeTool
  3. {
  4. class NewStorageFileInfo
  5. {
  6. public string _id { get; set; }
  7. public DateTime CreateTime { get; set; }
  8. public DateTime UpdateTime { get; set; }
  9. public string InternalUrl { get; set; }
  10. public string Token { get; set; }
  11. /// <summary>
  12. /// Gets the Path of this StorageFile.
  13. /// </summary>
  14. public string FileName { get; set; }
  15. /// <summary>
  16. /// Gets the folder name of file.
  17. /// </summary>
  18. public string FolderName { get; set; }
  19. /// <summary>
  20. /// Gets the sub folder name of file.
  21. /// </summary>
  22. public string SubFolderName { get; set; }
  23. }
  24. }