SUBD-Petrushin-Egor-PIbd-22/TaskTrackerContracts/SearchModels/DirectionSearchModel.cs

15 lines
291 B
C#
Raw Normal View History

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
}
}