summaryrefslogtreecommitdiff
path: root/Media.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-09-05 14:02:11 +1000
committerJake Mannens <jake@asger.xyz>2025-08-20 00:48:45 +1000
commit0d12ecef127c2724e168c220f9d6b934090a4290 (patch)
treee73cad74903d37dc56bbaf5206c3c004e294f280 /Media.cs
parent988f68191bbd93ce225205ae2a0ebcdf9df45655 (diff)
MediaService now records whether the checksum was verified at upload time
Diffstat (limited to 'Media.cs')
-rw-r--r--Media.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Media.cs b/Media.cs
index 2a4dab6..db38e9f 100644
--- a/Media.cs
+++ b/Media.cs
@@ -34,6 +34,7 @@ public class Media : HBObject {
public class UploadedFile : HBObject {
public string OriginalChecksum { get; set; }
+ public bool ChecksumVerified { get; set; } = false;
public string? Filename { get; set; }
public long Length { get; set; }
public DateTime UploadTime { get; set; } = DateTime.UtcNow;