12 lines
229 B
C#
Raw Permalink 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; }
}
}