PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyContracts/SearchModels/ImplementerSearchModel.cs
2024-05-02 14:54:56 +04:00

16 lines
362 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; } = string.Empty;
public string? Password { get; set; } = string.Empty;
}
}