15 lines
342 B
C#
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!;
|
|
}
|