ISEbd-21_Pyatkin_I.A_Precas.../PrecastConcretePlant/PrecastConcretePlantContracts/SearchModels/ImplementerSearchModel.cs

18 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}