CodeLiturgy.Dashboard/include/BlueWest.MapTo/test/MapTo.Integration.Tests/Data/ViewModels/EmployeeViewModel.cs

14 lines
341 B
C#
Raw Normal View History

2022-08-17 23:17:37 +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; }
}
}