CourseWork_Bank/Bank/BankContracts/SearchModels/ClientSearchModel.cs

16 lines
340 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankContracts.SearchModels
{
public class ClientSearchModel
{
2024-04-28 21:34:43 +04:00
public int? Id { get; set; }
public string? PhoneNumber { get; set; }
public string? Password { get; set; }
}
}