MapTo/test/MapTo.Integration.Tests/Data/ViewModels/EmployeeViewModel.cs

14 lines
341 B
C#
Raw Normal View History

2021-12-24 20:06:06 +03:00
using MapTo.Integration.Tests.Data.Models;
namespace MapTo.Integration.Tests.Data.ViewModels
{
[MapFrom(typeof(Employee))]
public partial class EmployeeViewModel
{
public int Id { get; set; }
public string EmployeeCode { get; set; }
public ManagerViewModel Manager { get; set; }
}
2021-04-09 09:48:23 +03:00
}