PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryContracts/SearchModels/ImplementerSearchModel.cs
2024-05-19 00:26:03 +04:00

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; }
}
}