|
@@ -28,7 +28,7 @@ public partial class FileEntity : EntityBase
|
|
|
|
|
|
|
|
|
[Column(StringLength = 500)]
|
|
|
- public string FileDirectory { get; }
|
|
|
+ public string FileDirectory { get; set; }
|
|
|
|
|
|
|
|
|
|
|
@@ -51,20 +51,19 @@ public partial class FileEntity : EntityBase
|
|
|
|
|
|
|
|
|
|
|
|
- public long Size { get; }
|
|
|
+ public long Size { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Column(StringLength = 50)]
|
|
|
- public string SizeFormat { get; }
|
|
|
+ public string SizeFormat { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Column(StringLength = 500)]
|
|
|
- public string LinkUrl { get; }
|
|
|
-
|
|
|
+ public string LinkUrl { get; set; }
|
|
|
|
|
|
|
|
|
|