Policy.cs 760 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GreenTree.Strohrmann.ERP.Core.Domain.Rights
  5. {
  6. public class Policy
  7. {
  8. #region Properties
  9. /// <summary>
  10. /// The policy name
  11. /// </summary>
  12. public string Name { get; set; }
  13. #endregion
  14. #region Ctor
  15. /// <summary>
  16. /// Initializes a new instance of the Policy class
  17. /// </summary>
  18. public Policy()
  19. {
  20. }
  21. /// <summary>
  22. /// Initializes a new instance of the Policy class
  23. /// </summary>
  24. /// <param name="name">The policy name.</param>
  25. public Policy(string name)
  26. {
  27. Name = name;
  28. }
  29. #endregion
  30. }
  31. }