using System; using System.Collections.Generic; #nullable disable namespace BO.AppServer.Data.Entity { public partial class WorkspaceBilling { public long WorkspaceId { get; set; } public long BillingPlanId { get; set; } public DateTime Created { get; set; } public DateTime? Modified { get; set; } public decimal ValueNumber { get; set; } public DateTime? ValueDate { get; set; } public int CustomPstinitialCredits { get; set; } public int CustomPstcreditsPerItem { get; set; } public bool CustomPstwatermark { get; set; } public int CustomPstquality { get; set; } public string CustomPstprocessProfile { get; set; } public bool CustomPsttest { get; set; } public virtual BillingPlan BillingPlan { get; set; } public virtual Workspace Workspace { get; set; } } }