Files
Toolkit2/Toolkit.Foundation/Templates/ITemplateDescriptor.cs
T
2022-12-05 17:47:16 +00:00

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