autobus-api_old/AutobusApi.Domain/Entities/VehicleEnrollmentEmployee.cs
2023-11-02 07:56:12 +02:00

15 lines
360 B
C#

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