Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

MeasureDimension.cs

namespace Nop.Core.Domain.Directory;

/// 
/// Represents a measure dimension
/// 
public partial class MeasureDimension : 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; }
}