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