19 lines
507 B
C#
19 lines
507 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Umbraco.Web.Models
|
|
{
|
|
public abstract class RelatedLinkBase
|
|
{
|
|
[JsonProperty("caption")]
|
|
public string Caption { get; set; }
|
|
[JsonProperty("link")]
|
|
public string Link { get; set; }
|
|
[JsonProperty("newWindow")]
|
|
public bool NewWindow { get; set; }
|
|
[JsonProperty("isInternal")]
|
|
public bool IsInternal { get; set; }
|
|
[JsonProperty("type")]
|
|
public RelatedLinkType Type { get; set; }
|
|
}
|
|
}
|