autobus-api_old/AutobusApi.Application/Buses/Queries/BusDto.cs

28 lines
590 B
C#

using AutobusApi.Application.Common.Mappings;
using AutobusApi.Domain.Entities;
namespace AutobusApi.Application.Buses.Queries;
public class BusDto : IMapFrom<Bus>
{
public int Id { get; set; }
public int CompanyId { get; set; }
public string Number { get; set; } = null!;
public string Model { get; set; } = null!;
public int Capacity { get; set; }
public bool HasClimateControl { get; set; }
public bool HasWiFi { get; set; }
public bool HasMultimedia { get; set; }
public bool HasWC { get; set; }
public bool HasOutlets { get; set; }
}