1234567891011121314151617181920212223242526272829303132 |
- using System;
- namespace VidFilesUpgradeTool
- {
- class NewStorageFileInfo
- {
- public string _id { get; set; }
- public DateTime CreateTime { get; set; }
- public DateTime UpdateTime { get; set; }
- public string InternalUrl { get; set; }
- public string Token { get; set; }
- /// <summary>
- /// Gets the Path of this StorageFile.
- /// </summary>
- public string FileName { get; set; }
- /// <summary>
- /// Gets the folder name of file.
- /// </summary>
- public string FolderName { get; set; }
- /// <summary>
- /// Gets the sub folder name of file.
- /// </summary>
- public string SubFolderName { get; set; }
- }
- }
|