CourseWork/University/UniversityContracts/BindingModels/StudentBindingModel.cs

15 lines
467 B
C#
Raw Permalink Normal View History

2024-04-18 19:09:47 +04:00
using UniversityDataModels.Models;
namespace UniversityContracts.BindingModels
2024-04-18 19:09:47 +04:00
{
public class StudentBindingModel : IStudentModel
{
public int Id { get; set; }
public int UserId { get; set; }
2024-04-18 19:09:47 +04:00
public int PlanOfStudyId { get; set; }
2024-05-30 00:22:02 +04:00
public string PlanOfStudyProfile { get; set; } = string.Empty;
2024-04-18 19:09:47 +04:00
public string Name { get; set; } = string.Empty;
public string PhoneNumber { get; set; } = string.Empty;
}
}