CourseWork_Borschevskaya_A..../Hospital/HospitalContracts/SearchModels/ApothecarySearchModel.cs

10 lines
225 B
C#
Raw Normal View History

2023-04-05 11:46:14 +04:00
namespace HospitalContracts.SearchModels
{
public class ApothecarySearchModel
{
public int? Id { get; set; }
public string? Login { get; set; }
public string? Password { get; set; }
}
}