refactoring
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace MyOffice.Data.Models.Items;
|
||||
|
||||
using MyOffice.Data.Models.Users;
|
||||
|
||||
public class ItemCategory
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid UserId { get; set; }
|
||||
public User User { get; set; } = null!;
|
||||
public string Name { get; set; } = null!;
|
||||
public IEnumerable<Item> Items { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user