using System; using System.Collections.Generic; #nullable disable namespace BO.AppServer.Data.Entity { public partial class InvoiceItem { // public long Id { get; set; } public long InvoiceId { get; set; } public long BillingPlanId { get; set; } public string BillingPlanCode { get; set; } public int UnitQuantity { get; set; } public decimal UnitBasePrice { get; set; } public string UnitBaseCurrency { get; set; } public DateTime Created { get; set; } public DateTime? Modified { get; set; } public long CreatedByUserId { get; set; } public long? ModifiedByUserId { get; set; } public virtual BillingPlan BillingPlan { get; set; } public virtual User CreatedByUser { get; set; } public virtual Invoice Invoice { get; set; } public virtual User ModifiedByUser { get; set; } } }