update
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
@@ -8,5 +8,6 @@ public class ItemCategory
|
||||
public Guid UserId { get; set; }
|
||||
public User User { get; set; } = null!;
|
||||
public string Name { get; set; } = null!;
|
||||
public IEnumerable<Item> Items { get; set; } = null!;
|
||||
public List<Item> Items { get; set; } = null!;
|
||||
public bool IsInternal { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user