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"; } } }