autobus-api_old/AutobusApi.Domain/Entities/Company.cs
2023-11-15 18:57:51 +02:00

19 lines
459 B
C#

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<Vehicle> Vehicles { get; set; } = null!;
public ICollection<Employee> Employees { get; set; } = null!;
}