PIbd-22_Chernyshev_G.J._30_.../GarmentFactoryContracts/SearchModels/ImplementerSearchModel.cs

16 lines
331 B
C#
Raw Normal View History

2024-04-17 10:42:00 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GarmentFactoryContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}