CM_Permission.cs 737 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class CM_Permission
  8. {
  9. private string _ModuleId;
  10. private string _ParentModuleId;
  11. private string _ModuleCode;
  12. public CM_Permission()
  13. {
  14. }
  15. public string ModuleId
  16. {
  17. get { return _ModuleId; }
  18. set { _ModuleId = value; }
  19. }
  20. public string ParentModuleId
  21. {
  22. get { return _ParentModuleId; }
  23. set { _ParentModuleId = value; }
  24. }
  25. public string ModuleCode
  26. {
  27. get { return _ModuleCode; }
  28. set { _ModuleCode = value; }
  29. }
  30. }
  31. }