Coursach/Course/Contracts/SearchModels/GuarantorSearchModel.cs

10 lines
189 B
C#
Raw Normal View History

2024-04-27 12:35:20 +04:00
namespace Contracts.SearchModels
{
public class GuarantorSearchModel
{
public int? Id { get; set; }
public string? Login { get; set; }
2024-05-27 21:03:42 +04:00
public string? Password { get; set; }
2024-04-27 12:35:20 +04:00
}
}