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