namespace TravelAgencyContracts.SearchModels { public class ExcursionSearchModel { public int? Id { get; set; } public string? ExcursionName { get; set; } public int? UserId { get; set; } public int? PlaceId { get; set; } } }