Files
Toolkit2/Framework/Foundation/Templates/ITemplateDescriptor.cs
T
Daniel Clark 0da4a37173 code sweep
2022-12-10 16:11:07 +00:00

14 lines
261 B
C#

using Microsoft.Extensions.DependencyInjection;
namespace Toolkit.Framework.Foundation;
public interface ITemplateDescriptor
{
Type ContentType { get; }
ServiceLifetime Lifetime { get; }
string? Name { get; }
Type TemplateType { get; }
}