namespace SanctionsSearch.Worker.Models; class AddressMap : ClassMap
{ public AddressMap() { Map(m => m.SdnId).Index(0); Map(m => m.Id).Index(1); Map(m => m.StreetAddress).Index(2).TypeConverter(); Map(m => m.CityProvincePostal).Index(3).TypeConverter(); Map(m => m.Country).Index(4).TypeConverter(); Map(m => m.Remarks).Index(5).TypeConverter(); } }