16 lines
299 B
C#
Raw Permalink Normal View History

2024-05-05 22:02:53 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarShowroomDataModels.SearchModel
{
public class EmployeeSearch
{
public int? Id;
public string? Email;
public string? Password;
}
}