using Nop.Core.Domain.Localization; namespace Nop.Core.Domain.Directory; /// /// Represents a state/province /// public partial class StateProvince : BaseEntity, ILocalizedEntity { /// /// Gets or sets the country identifier /// public int CountryId { get; set; } /// /// Gets or sets the name /// public string Name { get; set; } /// /// Gets or sets the abbreviation /// public string Abbreviation { get; set; } /// /// Gets or sets a value indicating whether the entity is published /// public bool Published { get; set; } /// /// Gets or sets the display order /// public int DisplayOrder { get; set; } }