20 lines
373 B
C#
20 lines
373 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Traffic.Data.Models
|
|||
|
{
|
|||
|
public class JoinRolePageInfo
|
|||
|
{
|
|||
|
public int RoleId { get; set; }
|
|||
|
|
|||
|
public int PageId { get; set; }
|
|||
|
|
|||
|
public string RoleName { get; set; }
|
|||
|
|
|||
|
public string PageName { get; set; }
|
|||
|
}
|
|||
|
}
|