18 lines
483 B
C#
18 lines
483 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CarCenterContracts.SearchModels
|
|||
|
{
|
|||
|
public class AdministratorSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
public string? AdministratorFIO { get; set; }
|
|||
|
public string? AdministratorLogin { get; set; }
|
|||
|
public string? AdministratorEmail { get; set; }
|
|||
|
public string? AdministratorPassword { get; set; }
|
|||
|
}
|
|||
|
}
|