22 lines
487 B
C#
22 lines
487 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HotelContracts.SearchModels
|
|
{
|
|
public class OrganiserSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
|
|
public string? OrganiserLogin { get; set; } = string.Empty;
|
|
|
|
public string? OrganiserPassword { get; set; } = string.Empty;
|
|
|
|
public string? OrganiserEmail { get; set; } = string.Empty;
|
|
|
|
public string? OrganiserFIO { get; set; } = string.Empty;
|
|
}
|
|
}
|