2023-05-17 14:31:34 +03:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using SchoolAgainStudyContracts.ViewModel;
|
|
|
|
|
using System.Net.Http.Headers;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace StudentWebClient
|
|
|
|
|
{
|
|
|
|
|
public class APIClient
|
|
|
|
|
{
|
2023-05-17 20:24:33 +03:00
|
|
|
|
|
2023-05-17 14:31:34 +03:00
|
|
|
|
public static StudentViewModel? Student { get; set; } = null;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|