Files
Toolkit2/Toolkit.Foundation/IContentTemplateDescriptor.cs
T
2024-04-13 11:29:32 +01:00

10 lines
168 B
C#

namespace Toolkit.Foundation;
public interface IContentTemplateDescriptor
{
object Key { get; }
Type ContentType { get; }
Type TemplateType { get; }
}