using System; using System.Collections.Generic; namespace Gestor.Model.API; public class Payment { public long Id { get; set; } public DateTime Vencimento { get; set; } public DateTime Compensation { get; set; } public DateTime Processamento { get; set; } public decimal Valor { get; set; } public string Nota { get; set; } public string Descricao { get; set; } public List Products { get; set; } public string Codigo { get; set; } }