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