domBudg/back/Contracts/DTOs/ChangeRecordDto.cs

11 lines
322 B
C#

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; } = string.Empty;
public decimal Sum { get; set; }
public DateTime ChangedAt { get; set; }
}