using AutobusApi.Domain.Common; namespace AutobusApi.Domain.Entities; public class Company : EntityBase { public string Name { get; set; } = null!; public string LegalAddress { get; set; } = null!; public string ContactEmail { get; set; } = null!; public string ContactPhoneNumber { get; set; } = null!; public ICollection Vehicles { get; set; } = null!; public ICollection Employees { get; set; } = null!; }