CourseWork_SchoolStudyAgain/SchoolAgainStudy/TeacherWebClient/APIClient.cs

15 lines
247 B
C#
Raw Normal View History

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