MapTo/test/TestConsoleApp/ViewModels/ProfileViewModel.cs

13 lines
257 B
C#
Raw Normal View History

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