/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
- using System;
- namespace LinFu.IoC.Configuration.Interfaces
- {
- /// <summary>
- /// Represents a named type.
- /// </summary>
- public interface INamedType
- {
- /// <summary>
- /// Gets or sets a value indicating the name that will be associated with the current type.
- /// </summary>
- string Name { get; set; }
- /// <summary>
- /// Gets or sets the value indicating the current target type.
- /// </summary>
- Type Type { get; set; }
- }
- }