This commit is contained in:
2023-07-20 21:38:05 +03:00
parent 4bac59f322
commit 2f108bef4f
35 changed files with 1863 additions and 909 deletions
+2 -2
View File
@@ -13,8 +13,8 @@ public class Item
/// UnCategorized category is CategoryId = UserId
/// </summary>
public Guid CategoryId { get; set; }
public ItemCategory Category { get; set; } = null!;
public ItemCategory? Category { get; set; }
public Guid ItemGlobalId { get; set; }
public ItemGlobal ItemGlobal { get; set; } = null!;
public IEnumerable<Motion> Motions { get; set; } = null!;
public List<Motion>? Motions { get; set; }
}