10 lines
256 B
C#
10 lines
256 B
C#
|
namespace Contracts.DTO;
|
||
|
|
||
|
public class SpendingPlanDto
|
||
|
{
|
||
|
public Guid Id { get; set; }
|
||
|
public Guid SpendingGroupId { get; set; }
|
||
|
public decimal Sum { get; set; }
|
||
|
public DateTime StartAt { get; set; }
|
||
|
public DateTime EndAt { get; set; }
|
||
|
}
|