You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace Entity.ShowEasyDtos { public class PaymentDTO { public string PaymentID { get; set; } public string PaymentStatus { get; set; } public string PaymentMethod { get; set; } public string PaymentTerms { get; set; } public DateTime? DueDate { get; set; } public DateTime? PaymentDate { get; set; }
public CurrencyDTO Currency = new CurrencyDTO(); public float Amount { get; set; } public string Memo { get; set; } public string Remittance { get; set; } public string RemittanceFileName { get; set; }
public List<string> RemittanceImg { get; set; }
} }
|