20 lines
485 B
C#
20 lines
485 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CRM.Core.Model.Map
|
|
{
|
|
public class Bas_Role_Permisson
|
|
{
|
|
public int RID { get; set; }
|
|
public string RNAME { get; set; }
|
|
public List<Bas_Role_PermissonArry> PERMISSON { get; set; }
|
|
|
|
}
|
|
public class Bas_Role_PermissonArry
|
|
{
|
|
public int PID { get; set; }
|
|
public string CODE { get; set; }
|
|
public string PNAME { get; set; }
|
|
public int TOOLBARAVLUE { get; set; }
|
|
}
|
|
}
|