2024-05-13 16:21:24 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace TaskTrackerContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class DirectionSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
2024-05-14 20:26:30 +04:00
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-05-13 16:21:24 +04:00
|
|
|
|
}
|
|
|
|
|
}
|