23 lines
629 B

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