Webiant Logo Webiant Logo
  1. No results found.

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

ProfileIndexModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Web.Models.Profile;

public partial record ProfileIndexModel : BaseNopModel
{
    public int CustomerProfileId { get; set; }
    public string ProfileTitle { get; set; }
    public int PostsPage { get; set; }
    public bool PagingPosts { get; set; }
    public bool ForumsEnabled { get; set; }
}