Making a few corrections to the serialization attributes after having tested ContentType Serialization. Enabling bulk saving of new ContentTypes with Parent/Composition dependencies.
10 lines
256 B
C#
10 lines
256 B
C#
using Umbraco.Tests.CodeFirst.Attributes;
|
|
|
|
namespace Umbraco.Tests.CodeFirst.TestModels
|
|
{
|
|
public class ContentPage : ContentTypeBase
|
|
{
|
|
[Richtext(PropertyGroup = "Content")]
|
|
public string BodyContent { get; set; }
|
|
}
|
|
} |