22 lines
421 B
C#
22 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Traffic.Data.Models
|
|
{
|
|
public class JoinRolePageList
|
|
{
|
|
public int? RoleId { get; set; }
|
|
|
|
public int PageId { get; set; }
|
|
|
|
public string PageModule { get; set; }
|
|
|
|
public string PageName { get; set; }
|
|
|
|
public string PageURL { get; set; }
|
|
}
|
|
}
|