14 lines
255 B
C#
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; }
|
|
} |