namespace Contracts.DTO; public class ChangeRecordDto { public Guid Id { get; set; } public Guid UserId { get; set; } public Guid? SpendingGroupId { get; set; } public string? SpendingGroupName { get; set; } public decimal Sum { get; set; } public DateTime ChangedAt { get; set; } }