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