Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Forums;
///
/// Represents a forum group
///
public partial class ForumGroup : BaseEntity
{
///
/// 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 date and time of instance creation
///
public DateTime CreatedOnUtc { get; set; }
///
/// Gets or sets the date and time of instance update
///
public DateTime UpdatedOnUtc { get; set; }
}