Files
Toolkit2/Framework/Foundation/Contents/IContentTemplateDescriptor.cs
T
2022-12-14 20:07:45 +00:00

14 lines
268 B
C#

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