Илья Федотов 08017d171e Base.01
2024-05-13 16:49:39 +04:00

21 lines
441 B
C#

using DinerDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DinerContracts.SearchModels {
public class ImplementerSearchModel {
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
public int? WorkExperience { get; set; }
public int? Qualification { get; set; }
public int? ID { get; set; }
}
}