diff --git a/src/SharerBlazorServer/Models/FileSliceInfoModel.cs b/src/SharerBlazorServer/Models/FileSliceInfoModel.cs index dd28137..c8a42fd 100644 --- a/src/SharerBlazorServer/Models/FileSliceInfoModel.cs +++ b/src/SharerBlazorServer/Models/FileSliceInfoModel.cs @@ -21,7 +21,6 @@ public string FileSizeHumanReadable { return GetHumanReadableSize(this.FileSize); } } - [JsonIgnore] public string EndHumanReadable { @@ -30,6 +29,9 @@ public string EndHumanReadable return GetHumanReadableSize(this.End); } } + // image data url + [JsonIgnore] + public string Thumbnail { get; set; } private static string GetHumanReadableSize(int byteSize) {