Илья Федотов c2faa8cfe5 Base.01
2024-05-01 12:51:35 +04:00

15 lines
348 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DinerContracts.SearchModels {
public class ClientSearchModel {
public int? ID { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}