Webiant Logo Webiant Logo
  1. No results found.

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

SampleForumGroup.cs

namespace Nop.Services.Installation.SampleData;

/// 
/// Represents a sample forum group
/// 
public partial class SampleForumGroup
{
    /// 
    /// Gets or sets the name
    /// 
    public string Name { get; set; }

    /// 
    /// Gets or sets the display order
    /// 
    public int DisplayOrder { get; set; }

    /// 
    /// Gets or sets the forums
    /// 
    public List Forums { get; set; } = new();

    #region Nested class

    /// 
    /// Represents a sample forum
    /// 
    public partial class SampleForum
    {
        /// 
        /// Gets or sets the name
        /// 
        public string Name { get; set; }

        /// 
        /// Gets or sets the description
        /// 
        public string Description { get; set; }

        /// 
        /// Gets or sets the display order
        /// 
        public int DisplayOrder { get; set; }
    }

    #endregion
}