50
1
using System;
2
using AutoMapper;
3
using System.ComponentModel;
4
5
public class Person
6
{
7
public string FirstName { get; set; }
8
public string LastName { get; set; }
9
public int Age { get; set; }
10
public string Address { get; set; }
11
public string Email { get; set; }
12
13
}
14
15
public class PersonVM
16
{
17
18
public string Name { get; set; }
19
public int Age { get; set; }
20
public string Address { get; set; }
21
public string Email { get; set; }
22
23
}
24
Cached Result
Key:GB Value:United Kingdom
Key:US Value:United States
Key:CA Value:Canada
Key:FR Value:France
Key:ES Value:Spain
Key:US Value:United States
Key:CA Value:Canada
Key:FR Value:France
Key:ES Value:Spain