2023-10-28 09:06:35 +04:00
|
|
|
|
using UniversityDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BindingModels
|
|
|
|
|
{
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public class DirectionBindingModel
|
2023-10-28 09:06:35 +04:00
|
|
|
|
{
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public int? Id { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|