FruitBank/Libraries/Nop.Core/Domain/Directory/MeasureDimension.cs

27 lines
611 B
C#

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