12 lines
233 B
C#
12 lines
233 B
C#
|
namespace TravelAgencyContracts.SearchModels
|
|||
|
{
|
|||
|
public class ExcursionSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
|
|||
|
public string? ExcursionName { get; set; }
|
|||
|
|
|||
|
public int? UserId { get; set; }
|
|||
|
}
|
|||
|
}
|