2024-04-18 19:35:33 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UniversityDataModels.Models;
|
|
|
|
|
|
2024-04-19 19:30:16 +04:00
|
|
|
|
namespace UniversityContracts.BindingModels
|
2024-04-18 19:35:33 +04:00
|
|
|
|
{
|
|
|
|
|
public class PlanOfStudyBindingModel : IPlanOfStudyModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Profile { get; set; } = string.Empty;
|
|
|
|
|
public string FormOfStudy { get; set; } = string.Empty;
|
|
|
|
|
public int WorkerId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|