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