It it now possible to create/edit item contents

This commit is contained in:
TheXamlGuy
2024-06-06 20:42:23 +01:00
parent 1302145f1c
commit c399e8c05c
30 changed files with 331 additions and 180 deletions
+1 -1
View File
@@ -13,5 +13,5 @@ public record BlobEntry
[Key]
public int Id { get; set; }
public DateTimeOffset DateTime { get; set; }
public DateTime DateTime { get; set; }
}
+2 -2
View File
@@ -17,7 +17,7 @@ public record ItemEntry
public required string Category { get; set; }
public ICollection<TagEntry>? Tags { get; }
public ICollection<TagEntry> Tags { get; set; } = new List<TagEntry>();
public ICollection<BlobEntry>? Blobs { get; }
public ICollection<BlobEntry> Blobs { get; set; } = new List<BlobEntry>();
}