Files
Toolkit2/Framework/Foundation/Templates/ITemplateDescriptor.cs
T

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; }
}
}