27 lines
605 B
C#
27 lines
605 B
C#
namespace Nop.Core.Domain.Directory;
|
|
|
|
/// <summary>
|
|
/// Represents a measure weight
|
|
/// </summary>
|
|
public partial class MeasureWeight : 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; }
|
|
} |