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 ChangeRecords { get; set; } = new(); public List SpendingPlans { get; set; } = new(); }