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

13 lines
364 B
C#
Raw Normal View History

2021-12-24 20:06:06 +03:00
using System.Collections.Generic;
using MapTo.Integration.Tests.Data.Models;
namespace MapTo.Integration.Tests.Data.ViewModels
{
[MapFrom(typeof(Manager))]
public partial class ManagerViewModel : EmployeeViewModel
{
public int Level { get; set; }
public List<EmployeeViewModel> Employees { get; set; } = new();
}
2021-04-09 09:48:23 +03:00
}