Project rename
This commit is contained in:
8
Syrette/ServiceDescriptor.cs
Normal file
8
Syrette/ServiceDescriptor.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Syrette;
|
||||
|
||||
public class ServiceDescriptor {
|
||||
public required Type ServiceType { get; set; }
|
||||
public required Type ImplementationType { get; set; }
|
||||
public required ServiceLifetime Lifetime { get; set; }
|
||||
public List<Type> RequiredTypes { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user