using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using MapTo; namespace BlueWest.Data { [MapFrom(new []{ typeof(CurrencyUpdate), typeof(CurrencyCreate), typeof(CurrencyUnique) })] public partial class Currency { public int Id { get; set; } public int Num { get; set; } [MaxLength(3)] public string Code { get; set; } public List Countries { get; set; } public DateTime CreateDate { get; set; } } }