10 lines
168 B
C#
10 lines
168 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IContentTemplateDescriptor
|
|
{
|
|
object Key { get; }
|
|
|
|
Type ContentType { get; }
|
|
|
|
Type TemplateType { get; }
|
|
} |