kursovaya/ModelsLocal/Result.cs
2025-06-09 23:05:33 +03:00

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; }
}