2012-11-23 19:58:19 -01:00
|
|
|
|
using Umbraco.Tests.CodeFirst.Attributes;
|
|
|
|
|
|
using umbraco.editorControls.textfield;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Tests.CodeFirst.TestModels
|
|
|
|
|
|
{
|
2012-11-30 09:34:09 -01:00
|
|
|
|
public class TextPage : ContentTypeBase
|
2012-11-23 19:58:19 -01:00
|
|
|
|
{
|
|
|
|
|
|
[PropertyType(typeof(TextFieldDataType), PropertyGroup = "Content")]
|
|
|
|
|
|
public string Author { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[PropertyType(typeof(TextFieldDataType), PropertyGroup = "Content")]
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|