ISEbd-22_CourseWork_School/School/SchoolContracts/BindingModels/StudentBindingModel.cs

18 lines
361 B
C#

using SchoolDataModels;
namespace SchoolContracts.BindingModels
{
public class StudentBindingModel : IStudentModel
{
public int DirectorId { get; set; }
public string Name { get; set; } = string.Empty;
public double Price { get; set; }
public int Course { get; set; }
public int Id { get; set; }
}
}