Files
2022-11-01 15:26:08 +00:00

14 lines
255 B
C#

using Microsoft.Extensions.DependencyInjection;
namespace TheXamlGuy.Framework.Core;
public interface ITemplateDescriptor
{
Type DataType { get; }
ServiceLifetime Lifetime { get; }
string? Name { get; }
Type TemplateType { get; }
}