17 lines
386 B
C#
17 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CarCenterContracts.SearchModels
|
|
{
|
|
public class CarSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
public string? BrandCar { get; set; }
|
|
public string? Model { get; set; }
|
|
public int? AdministratorId { get; set; }
|
|
}
|
|
}
|