12 lines
346 B
C#
12 lines
346 B
C#
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; }
|
|
} |