Upload files to 'ShipyardContracts/SearchModels'

This commit is contained in:
Ivan_Starostin 2024-06-02 18:03:50 +04:00
parent a3f01b86f9
commit 69125e1b66

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShipyardContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; } = string.Empty;
public string? Password { get; set; } = string.Empty;
}
}