10 lines
229 B
C#
Raw Normal View History

2024-04-30 01:41:35 +03:00
namespace ServiceStationContracts.SearchModels
{
public class ExecutorSearchModel
{
public int? Id { get; set; }
public string? Email { get; set; }
2024-08-16 13:44:43 +04:00
public string? Password { get; set; }
2024-04-30 01:41:35 +03:00
}
}