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