autobus-api_old/AutobusApi.Domain/Entities/VehicleEnrollmentEmployee.cs
2023-11-15 18:57:51 +02:00

15 lines
342 B
C#

using AutobusApi.Domain.Common;
namespace AutobusApi.Domain.Entities;
public class VehicleEnrollmentEmployee : EntityBase
{
public int EmployeeId { get; set; }
public Employee Employee { get; set; } = null!;
public int VehicleEnrollmentId { get; set; }
public VehicleEnrollment VehicleEnrollment { get; set; } = null!;
}