Files
myoffice/MyOffice.Services/Account/Domain/ItemCategoryDto.cs
T
2023-12-01 20:47:42 +02:00

13 lines
355 B
C#

namespace MyOffice.Services.Account.Domain;
using MyOffice.Data.Models.Items;
public class ItemCategoryDto
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public UserDto User { get; set; } = null!;
public string Name { get; set; } = null!;
public List<ItemDto> Items { get; set; } = null!;
public bool IsInternal { get; set; }
}