Escali License control 1
Currency.cs
Gå til dokumentasjonen til denne filen.
1using System.ComponentModel.DataAnnotations;
2
4{
5
6 public class Currency
7 {
8
9 [Key]
10 public int CurrencySeq { get; set; }
11
12 [Required]
13 [MaxLength(3)]
14 public string CurrencyName { get; set; }
15
16 // public virtual List<PriceList> PriceLists { get; set; }
17 // public virtual List<Agreement> Agreements { get; set; }
18
19
20 }
21}