16 lines
279 B
C#
16 lines
279 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Toolkit.Foundation
|
|
{
|
|
public interface ITemplateDescriptor
|
|
{
|
|
Type DataType { get; }
|
|
|
|
ServiceLifetime Lifetime { get; }
|
|
|
|
string? Name { get; }
|
|
|
|
Type TemplateType { get; }
|
|
}
|
|
}
|