namespace Contracts.DTO;

public class SpendingGroupDto
{
    public Guid Id { get; set; }
    public string Name { get; set; } = string.Empty;
    public Guid UserId { get; set; }
    public List<ChangeRecordDto> ChangeRecords { get; set; } = new();
    public List<SpendingPlanDto> SpendingPlans { get; set; } = new(); 
}