tiseza_oss_live/Models/InvoiceDisplay.cs

19 lines
566 B
C#

using System;
namespace OSS.Models
{
public class InvoiceDisplay
{
public long? InvoiceID { get; set; }
public string SubServiceName { get; set; }
public decimal? Amount { get; set; }
public string Currency { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? Expiredate { get; set; }
public string BillItemRefNo { get; set; }
public string ControlNo { get; set; }
public bool? PaymentStatus { get; set; }
public string ApplicationCode { get; set; }
}
}