Files
Umbraco-CMS/src/Umbraco.Web/Models/Link.cs

14 lines
295 B
C#
Raw Normal View History

2019-01-21 20:08:09 +01:00
using Umbraco.Core;
namespace Umbraco.Web.Models
{
public class Link
{
public string Name { get; set; }
public string Target { get; set; }
public LinkType Type { get; set; }
public Udi Udi { get; set; }
public string Url { get; set; }
}
}