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; } }