2024-05-01 20:40:47 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-05-02 17:22:43 +04:00
|
|
|
|
namespace University.ViewModels
|
2024-05-01 20:40:47 +04:00
|
|
|
|
{
|
|
|
|
|
public class ReportTeacherViewModel
|
|
|
|
|
{
|
|
|
|
|
public string TeacherName { get; set; } = string.Empty;
|
|
|
|
|
public List<(string Student, string PhoneNumber)> Students { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|