using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using MapTo; namespace BlueWest.Data { [MapFrom(typeof(Currency))] public partial class CurrencyCreate { public int Num { get; set; } [MaxLength(3)] public string Code { get; set; } //public List CountriesToCreate { get; set; } } }