PIbd-22_Kozlova_A.A_Precast.../PrecastConcretePlant/PrecastConcretePlantContracts/SearchModels/ClientSearchModel.cs

20 lines
400 B
C#
Raw Permalink Normal View History

2024-04-07 22:12:50 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}