123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- namespace PublicTools.XMLDataBase
- {
-
-
-
-
-
-
-
-
-
-
- public class XFileInfo
- {
-
-
-
- private string tableName;
-
-
-
-
- private string filePath;
-
-
-
- private string targetPath;
-
-
-
- private bool isCanWrite = false;
-
-
-
-
-
-
-
-
-
-
-
-
- private string md5;
-
-
-
-
- private string version;
- public string TableName { get => tableName; set => tableName = value; }
- public string FilePath { get => filePath; set => filePath = value; }
- public string TargetPath { get => targetPath; set => targetPath = value; }
- public bool IsCanWrite { get => isCanWrite; set => isCanWrite = value; }
- public string Md5 { get => md5; set => md5 = value; }
- public string Version { get => version; set => version = value; }
- }
- }
|