using System; using System.ComponentModel.DataAnnotations; namespace Yavsc.Model.FrontOffice.Catalog { /// /// Link. /// public class Link:Label { /// /// Initializes a new instance of the class. /// public Link () { } /// /// Gets or sets the reference. /// /// The reference. [Required] public string Ref { get; set; } } }