yavsc/yavscModel/FrontOffice/Catalog/Link.cs

16 lines
202 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Model.FrontOffice
{
public class Link:Label
{
public Link ()
{
}
[Required]
public string Ref { get; set; }
}
}