ISEbd-22_CourseWork_School/School/SchoolContracts/SearchModels/ImplementerSearchModel.cs

10 lines
224 B
C#
Raw Permalink Normal View History

2024-05-01 17:54:58 +04:00
namespace SchoolContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? Login { get; set; }
public string? Password { get; set; }
}
}