It it now possible to create/edit item contents
This commit is contained in:
@@ -13,5 +13,5 @@ public record BlobEntry
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
public DateTimeOffset DateTime { get; set; }
|
||||
public DateTime DateTime { get; set; }
|
||||
}
|
||||
@@ -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>();
|
||||
}
|
||||
Reference in New Issue
Block a user