SUBD-Petrushin-Egor-PIbd-22/TaskTrackerContracts/SearchModels/DirectionSearchModel.cs
2024-05-14 20:26:30 +04:00

15 lines
291 B
C#

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; }
public string Name { get; set; } = string.Empty;
}
}