/src/LinFu.IoC/Configuration/ServiceInstance.cs
C# | 14 lines | 9 code | 2 blank | 3 comment | 0 complexity | bf1fa3be280309a9511b2875af57751a MD5 | raw file
1using LinFu.IoC.Interfaces; 2 3namespace LinFu.IoC.Configuration 4{ 5 /// <summary> 6 /// Represents the default implementation of the <see cref="IServiceInstance" /> interface. 7 /// </summary> 8 internal class ServiceInstance : IServiceInstance 9 { 10 public IServiceInfo ServiceInfo { get; internal set; } 11 12 public object Object { get; internal set; } 13 } 14}