2021-02-07 13:51:49 +03:00
|
|
|
|
using MapTo;
|
|
|
|
|
using TestConsoleApp.Data.Models;
|
2020-12-21 13:20:29 +03:00
|
|
|
|
|
|
|
|
|
namespace TestConsoleApp.ViewModels
|
|
|
|
|
{
|
2021-02-07 13:51:49 +03:00
|
|
|
|
[MapFrom(typeof(Profile))]
|
|
|
|
|
public partial class ProfileViewModel
|
2020-12-21 13:20:29 +03:00
|
|
|
|
{
|
|
|
|
|
public string FirstName { get; }
|
2021-02-07 13:51:49 +03:00
|
|
|
|
|
2021-01-07 11:17:36 +03:00
|
|
|
|
public string LastName { get; }
|
2020-12-21 13:20:29 +03:00
|
|
|
|
}
|
|
|
|
|
}
|