16 lines
197 B
C#
16 lines
197 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace SalesCatalog.Model
|
|
{
|
|
public class Link:Label
|
|
{
|
|
public Link ()
|
|
{
|
|
}
|
|
[Required]
|
|
public string Ref { get; set; }
|
|
}
|
|
}
|
|
|