2023-04-04 13:50:59 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2023-04-04 13:52:27 +04:00
|
|
|
|
using UniversityModels.Models;
|
2023-04-04 13:50:59 +04:00
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BindingModels
|
|
|
|
|
{
|
2023-04-04 13:52:27 +04:00
|
|
|
|
public class EducationStatusBindingModel : IEducationStatusModel
|
2023-04-04 13:50:59 +04:00
|
|
|
|
{
|
2023-04-04 13:52:27 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2023-04-04 13:50:59 +04:00
|
|
|
|
}
|
|
|
|
|
}
|