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!; }