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