14 lines
296 B
C#
14 lines
296 B
C#
|
using System.ComponentModel.DataAnnotations;
|
||
|
using MapTo;
|
||
|
|
||
|
namespace BlueWest.Data
|
||
|
{
|
||
|
[MapFrom(typeof(Currency))]
|
||
|
public partial class CurrencyCreate
|
||
|
{
|
||
|
[MaxLength(3)] public int Num { get; set; } // Primary key
|
||
|
[MaxLength(3)] public string Code { get; set; }
|
||
|
}
|
||
|
}
|
||
|
|