1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- internal class StorageFileInfoes
- {
- public string Id { get; private set; }
- public DateTime CreateTime { get; private set; }
- public DateTime UpdateTime { get; set; }
- /// <summary>
- /// Internal url for storage server
- /// </summary>
- public string InternalUrl { get; set; }
- /// <summary>
- /// Gets the Token of this StorageFile.
- /// </summary>
- 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; }
- }
- }
|