EasyConfigItem.cs 775 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. namespace EasyDevCore.Configuration
  3. {
  4. /// <summary>
  5. ///
  6. /// </summary>
  7. public class EasyConfigItem
  8. {
  9. /// <summary>
  10. /// Gets or sets the property.
  11. /// </summary>
  12. /// <value>
  13. /// The property.
  14. /// </value>
  15. public EasyConfigPropertyAttribute Property { get; set; }
  16. /// <summary>
  17. /// Gets or sets the type of the property.
  18. /// </summary>
  19. /// <value>
  20. /// The type of the property.
  21. /// </value>
  22. public Type PropertyType { get; set; }
  23. /// <summary>
  24. /// Gets or sets the value.
  25. /// </summary>
  26. /// <value>
  27. /// The value.
  28. /// </value>
  29. public object Value { get; set; }
  30. }
  31. }