13 lines
355 B
C#
13 lines
355 B
C#
|
using UniversityDataModels.Models;
|
|||
|
|
|||
|
namespace UniversityContracts.BindingModel
|
|||
|
{
|
|||
|
public class StudentBindingModel : IStudentModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public int PlanOfStudyId { get; set; }
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
public string PhoneNumber { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|