| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace BO.AppServer.Data.Entity
- {
- public partial class MetadocumentBilling
- {
- public long? MetadocumentId { get; set; }
- public long WorkspaceBillingId { 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? Procesed { get; set; }
- public DateTime? ProcessStart { get; set; }
- public DateTime? Downloaded { get; set; }
- public int ProcessState { get; set; }
- public string Psinstance { get; set; }
- public DateTime Created { get; set; }
- public DateTime? Modified { get; set; }
- public virtual Metadocument Metadocument { get; set; }
- public virtual WorkspaceBilling WorkspaceBilling { get; set; }
- }
- }
|