10 lines
244 B
C#
10 lines
244 B
C#
using System.Collections.Generic;
|
|
using kursovaya.Models;
|
|
|
|
namespace kursovaya.ModelsLocal;
|
|
|
|
public class Result()
|
|
{
|
|
public List<Teacher> Teachers { get; set; }
|
|
public List<DisciplineGroupTeacher> DisciplineGroupTeachers { get; set; }
|
|
} |