123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CoreEntity.Entity
- {
- [Serializable]
- public class CM_Permission
- {
- private string _ModuleId;
- private string _ParentModuleId;
- private string _ModuleCode;
- public CM_Permission()
- {
- }
- public string ModuleId
- {
- get { return _ModuleId; }
- set { _ModuleId = value; }
- }
- public string ParentModuleId
- {
- get { return _ParentModuleId; }
- set { _ParentModuleId = value; }
- }
- public string ModuleCode
- {
- get { return _ModuleCode; }
- set { _ModuleCode = value; }
- }
- }
- }
|