/src/LinFu.IoC/Configuration/Interfaces/INamedType.cs

http://github.com/philiplaureano/LinFu · C# · 20 lines · 9 code · 2 blank · 9 comment · 0 complexity · b3ca0372838a1d689e9b86cd47bdc278 MD5 · raw file

  1. using System;
  2. namespace LinFu.IoC.Configuration.Interfaces
  3. {
  4. /// <summary>
  5. /// Represents a named type.
  6. /// </summary>
  7. public interface INamedType
  8. {
  9. /// <summary>
  10. /// Gets or sets a value indicating the name that will be associated with the current type.
  11. /// </summary>
  12. string Name { get; set; }
  13. /// <summary>
  14. /// Gets or sets the value indicating the current target type.
  15. /// </summary>
  16. Type Type { get; set; }
  17. }
  18. }