namespace Nop.Core.Domain.Directory; /// /// Represents a measure weight /// public partial class MeasureWeight : BaseEntity { /// /// Gets or sets the name /// public string Name { get; set; } /// /// Gets or sets the system keyword /// public string SystemKeyword { get; set; } /// /// Gets or sets the ratio /// public decimal Ratio { get; set; } /// /// Gets or sets the display order /// public int DisplayOrder { get; set; } }