2023-04-08 13:59:34 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UniversityModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class StreamBindingModel : IStreamModel
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int Course { get; set; }
|
|
|
|
|
|
|
|
|
|
public int UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
2023-04-08 20:16:42 +04:00
|
|
|
|
public Dictionary<int, IStudentModel> StudentStream { get; set; } = new();
|
|
|
|
|
|
2023-04-08 13:59:34 +04:00
|
|
|
|
}
|
|
|
|
|
}
|