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