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

18 lines
361 B
C#
Raw Permalink Normal View History

2024-05-01 17:54:58 +04:00
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; }
}
}