Coursach/Course/Contracts/SearchModels/GuarantorSearchModel.cs
2024-05-27 21:03:42 +04:00

10 lines
189 B
C#

namespace Contracts.SearchModels
{
public class GuarantorSearchModel
{
public int? Id { get; set; }
public string? Login { get; set; }
public string? Password { get; set; }
}
}