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; } } }