using FruitBank.Common.Interfaces; using LinqToDB.Mapping; using Mango.Nop.Core.Entities; namespace FruitBank.Common.Entities; public abstract class PartnerBase : MgEntityBase, IPartnerBase { public string Name { get; set; } public string TaxId { get; set; } public string CertificationNumber { get; set; } public string CountryCode { get; set; } public string PostalCode { get; set; } public string Country { get; set; } public string State { get; set; } public string County { get; set; } public string City { get; set; } public string Street { get; set; } [SkipValuesOnUpdate] public DateTime Created { get; set; } public DateTime Modified { get; set; } }