using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using YLErp.DBModels.Abstract; namespace YLErp.Model { public class TradeOtherDocument : ITradeContractDocument { public int id { get; set; } public string EncryptId { get; set; } public string AbsolutePath { get; set; } public int? BuyerId { get; set; } public string BuyerName { get; set; } public int? ClientId { get; set; } public string ClientName { get; set; } public string Code { get; set; } public string Comments { get; set; } public string ContractVersion { get; set; } public int? DayNumber { get; set; } public string FileName { get; set; } public string FileType { get; set; } public string Paths { get; set; } public string RelativePath { get; set; } public int? SourceType { get; set; } public int? SellerId { get; set; } public string SellerName { get; set; } public string StampDocumentFileName { get; set; } public string Status { get; set; } public string Type { get; set; } public DateTime? ValueDate { get; set; } } }