Files
Umbraco-CMS/src/Umbraco.Tests/CodeFirst/Definitions/DependencyField.cs
T

12 lines
300 B
C#
Raw Normal View History

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; }
}
}