10 lines
173 B
C#
10 lines
173 B
C#
namespace Hyperbar;
|
|
|
|
public interface IContentTemplateDescriptor
|
|
{
|
|
Type ContentType { get; set; }
|
|
|
|
object Key { get; set; }
|
|
|
|
Type TemplateType { get; set; }
|
|
} |