1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using SQLite;
- using System;
- namespace Vinno.vCloud.Disk.Database.Dto
- {
-
-
-
- public class FoldersAndFiles
- {
- [PrimaryKey, AutoIncrement]
- public int Id { get; set; }
- public string Name { get; set; }
-
-
-
- public string FileUrl { get; set; }
-
-
-
- public int Type { get; set; }
-
-
-
- public int FatherId { get; set; }
-
-
-
- public string Password { get; set; }
-
-
-
- public string FileMd5 { get; set; }
-
-
-
- public string Creater { get; set; }
-
-
-
- public DateTime CreateTime { get; set; }
-
-
-
- public float FileSize { get; set; }
- }
- }
|