CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptContracts/SearchModels/ClientSearchModel.cs

24 lines
485 B
C#
Raw Normal View History

2023-04-01 09:00:47 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
public string? Surname { get; set; }
public string? Patronymic { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}