| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GreenTree.Strohrmann.ERP.Core.Domain.Rights
- {
- public class Policy
- {
- #region Properties
- /// <summary>
- /// The policy name
- /// </summary>
- public string Name { get; set; }
- #endregion
- #region Ctor
- /// <summary>
- /// Initializes a new instance of the Policy class
- /// </summary>
- public Policy()
- {
- }
- /// <summary>
- /// Initializes a new instance of the Policy class
- /// </summary>
- /// <param name="name">The policy name.</param>
- public Policy(string name)
- {
- Name = name;
- }
- #endregion
- }
- }
|