MetadocumentBilling.cs 702 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace BO.AppServer.Data.Entity
  5. {
  6. public partial class MetadocumentBilling
  7. {
  8. public long MetadocumentId { get; set; }
  9. public long BillingPlanId { get; set; }
  10. public int CreditCost { get; set; }
  11. public bool Watermark { get; set; }
  12. public int Quality { get; set; }
  13. public string ProcessProfile { get; set; }
  14. public bool Test { get; set; }
  15. public DateTime Created { get; set; }
  16. public DateTime? Modified { get; set; }
  17. public virtual BillingPlan BillingPlan { get; set; }
  18. public virtual Metadocument Metadocument { get; set; }
  19. }
  20. }