using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using YieldChain.Security; namespace YLErp.DBModels.Abstract { public interface ITradeContractDocument { int id { get; set; } string EncryptId { get; } string AbsolutePath { get; } int? BuyerId { get; set; } string BuyerName { get; set; } int? ClientId { get; set; } string ClientName { get; set; } string Code { get; set; } string Comments { get; set; } string ContractVersion { get; set; } int? DayNumber { get; set; } string FileName { get; set; } string FileType { get; set; } string Paths { get; set; } string RelativePath { get; } int? SellerId { get; set; } string SellerName { get; set; } string StampDocumentFileName { get; set; } int? SourceType { get; set; } string Status { get; set; } string Type { get; set; } DateTime? ValueDate { get; set; } } }