PIbd-22_Aleikin_A.M._Confec.../Confectionery/ConfectioneryContracts/SearchModels/ImplementerSearchModel.cs

18 lines
359 B
C#

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