15 lines
247 B
C#
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;
|
|
|
|
}
|
|
}
|