12 lines
231 B
C#
12 lines
231 B
C#
namespace ServiceStationContracts.SearchModels
|
|
{
|
|
public class ExecutorSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
|
|
public string? LastName { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
}
|
|
}
|