2024-04-27 23:49:22 +04:00

14 lines
281 B
C#

namespace TravelAgencyContracts.SearchModels
{
public class PlaceSearchModel
{
public int? Id { get; set; }
public string? PlaceName { get; set; }
public string? PlaceAddress { get; set; }
public int? ExcursionId { get; set; }
}
}