2024-11-25 23:46:53 +04:00
|
|
|
namespace Contracts.DTO;
|
|
|
|
|
|
|
|
public class SpendingGroupDto
|
|
|
|
{
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public Guid UserId { get; set; }
|
2024-11-27 00:26:18 +04:00
|
|
|
public List<ChangeRecordDto> ChangeRecords { get; set; } = new();
|
2024-11-27 02:40:02 +04:00
|
|
|
public List<SpendingPlanDto> SpendingPlans { get; set; } = new();
|
2024-11-25 23:46:53 +04:00
|
|
|
}
|