PIbd-21_Medvedkov_Coursach/ComputerShopContracts/SearchModels/UserSearchModel.cs
2024-05-02 00:46:54 +04:00

19 lines
445 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.SearchModels
{
public class UserSearchModel
{
public string? Fio { get; set; }
public string? PhoneNumber { get; set; }
public int? Id { get; set; }
public string? Login { get; set; }
public string Password { get; set; }
public string? Email { get; set; }
}
}