PIbd-22_Filippov_D.S._Cours.../VeterinaryContracts/SearchModels/DoctorSearchModel.cs
2024-05-30 07:33:38 +04:00

17 lines
354 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VeterinaryContracts.SearchModels
{
public class DoctorSearchModel
{
public int? Id { get; set; }
public string? DoctorFIO { get; set; }
public string? Login { get; set; }
public string? Password { get; set; }
}
}