mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
842 B
26 lines
842 B
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Squidex.Web
|
|
{
|
|
public class ResourceLink
|
|
{
|
|
[Required]
|
|
[Display(Description = "The link url.")]
|
|
public string Href { get; set; }
|
|
|
|
[Required]
|
|
[Display(Description = "The link method.")]
|
|
public string Method { get; set; }
|
|
|
|
[Required]
|
|
[Display(Description = "Additional data about the link.")]
|
|
public string Metadata { get; set; }
|
|
}
|
|
}
|
|
|