16 lines
351 B
C#
16 lines
351 B
C#
using AutobusApi.Application.Common.Mappings;
|
|
using AutobusApi.Domain.Entities;
|
|
|
|
namespace AutobusApi.Application.Regions.Queries;
|
|
|
|
public class RegionDto : IMapFrom<Region>
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public int CountryId { get; set; }
|
|
|
|
public string CountryName { get; set; } = null!;
|
|
}
|