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