using AutobusApi.Domain.Common; namespace AutobusApi.Domain.Entities; public class Vehicle : EntityBase { public int CompanyId { get; set; } public Company Company { get; set; } = null!; public ICollection Enrollments { get; set; } = null!; }