1053492a29
Making a few corrections to the serialization attributes after having tested ContentType Serialization. Enabling bulk saving of new ContentTypes with Parent/Composition dependencies.
12 lines
300 B
C#
12 lines
300 B
C#
using System;
|
|
using Umbraco.Core.Models;
|
|
|
|
namespace Umbraco.Tests.CodeFirst.Definitions
|
|
{
|
|
public class DependencyField
|
|
{
|
|
public string Alias { get; set; }
|
|
public string[] DependsOn { get; set; }
|
|
public Lazy<IContentType> ContentType { get; set; }
|
|
}
|
|
} |