21 lines
441 B
C#
Raw Normal View History

2024-05-13 16:49:39 +04:00
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; }
}
}