You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
675 B
35 lines
675 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace CounsellorBL
|
|
{
|
|
public class PrvilegeInfo
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
public string NAME { get; set; }
|
|
|
|
public string CONTENT { get; set; }
|
|
|
|
public string PRIVILEGETYPE { get; set; }
|
|
|
|
public int SORT { get; set; }
|
|
|
|
public string PARENTID { get; set; }
|
|
|
|
public bool ISLEAF { get; set; }
|
|
|
|
public string BTN_LOG_FLAG { get; set; }
|
|
|
|
public PrvilegeInfo()
|
|
{
|
|
PARENTID = "-1";
|
|
ID = "-1";
|
|
CONTENT = "";
|
|
BTN_LOG_FLAG = "N";
|
|
}
|
|
}
|
|
|
|
}
|