10 lines
323 B
C#
10 lines
323 B
C#
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();
|
|
} |