CourseWork_SchoolStudyAgain/SchoolAgainStudy/TeacherWebClient/APIClient.cs
2023-05-17 21:29:39 +04:00

15 lines
247 B
C#

using Newtonsoft.Json;
using SchoolAgainStudyContracts.ViewModel;
using System.Net.Http.Headers;
using System.Text;
namespace TeacherWebClient
{
public class APIClient
{
public static TeacherViewModel? Teacher { get; set; } = null;
}
}