domBudg/back/Contracts/DTOs/ChangeRecordDto.cs

11 lines
307 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; }
public decimal Sum { get; set; }
public DateTime ChangedAt { get; set; }
}