using System; using System.Collections.Generic; #nullable disable namespace BO.AppServer.Data.Entity { public partial class MetadocumentBilling { public long MetadocumentId { get; set; } public long BillingPlanId { get; set; } public int CreditCost { get; set; } public bool Watermark { get; set; } public int Quality { get; set; } public string ProcessProfile { get; set; } public bool Test { get; set; } public DateTime Created { get; set; } public DateTime? Modified { get; set; } public virtual BillingPlan BillingPlan { get; set; } public virtual Metadocument Metadocument { get; set; } } }