123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using SQLite;
- namespace VidFilesUpgradeTool
- {
- class StorageFileInfo
- {
- /// <summary>
- /// Gets the Token of this StorageFile.
- /// </summary>
- [PrimaryKey]
- 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; }
- public StorageFileInfo()
- {
- }
- public StorageFileInfo(NewStorageFileInfo newStorageFileInfo)
- {
- Token = newStorageFileInfo.Token;
- FileName = newStorageFileInfo.FileName;
- FolderName = newStorageFileInfo.FolderName;
- SubFolderName = newStorageFileInfo.SubFolderName;
- }
- }
- }
|