14 lines
425 B
C#
14 lines
425 B
C#
|
|
using Umbraco.Tests.CodeFirst.Attributes;
|
|||
|
|
using umbraco.editorControls.textfield;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Tests.CodeFirst.TestModels
|
|||
|
|
{
|
|||
|
|
public class TextPage
|
|||
|
|
{
|
|||
|
|
[PropertyType(typeof(TextFieldDataType), PropertyGroup = "Content")]
|
|||
|
|
public string Author { get; set; }
|
|||
|
|
|
|||
|
|
[PropertyType(typeof(TextFieldDataType), PropertyGroup = "Content")]
|
|||
|
|
public string Title { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|