PIbd-31_Putincev.D.M._COP_29/COP/PortalAccountsContracts/SearchModels/AccountSearchModel.cs

12 lines
229 B
C#
Raw Normal View History

2024-11-19 23:18:49 +04:00
namespace PortalAccountsContracts.SearchModels
{
public class AccountSearchModel
{
public int? Id { get; set; }
public string? Login { get; set; }
public int? InterestId { get; set; }
}
}