14 lines
276 B
C#
14 lines
276 B
C#
|
namespace TravelAgencyContracts.SearchModels
|
|||
|
{
|
|||
|
public class GuideSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
|
|||
|
public string? GuideFIO { get; set; }
|
|||
|
|
|||
|
public string? Email { get; set; }
|
|||
|
|
|||
|
public string? PhoneNumber { get; set; }
|
|||
|
}
|
|||
|
}
|