using System; namespace EasyDevCore.Configuration { /// /// /// public class EasyConfigItem { /// /// Gets or sets the property. /// /// /// The property. /// public EasyConfigPropertyAttribute Property { get; set; } /// /// Gets or sets the type of the property. /// /// /// The type of the property. /// public Type PropertyType { get; set; } /// /// Gets or sets the value. /// /// /// The value. /// public object Value { get; set; } } }