/src/LinFu.IoC/Configuration/ServiceInstance.cs

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

  1. using LinFu.IoC.Interfaces;
  2. namespace LinFu.IoC.Configuration
  3. {
  4. /// <summary>
  5. /// Represents the default implementation of the <see cref="IServiceInstance" /> interface.
  6. /// </summary>
  7. internal class ServiceInstance : IServiceInstance
  8. {
  9. public IServiceInfo ServiceInfo { get; internal set; }
  10. public object Object { get; internal set; }
  11. }
  12. }