14 lines
274 B
C#
14 lines
274 B
C#
using Newtonsoft.Json;
|
|
using SchoolAgainStudyContracts.ViewModel;
|
|
using System.Net.Http.Headers;
|
|
using System.Text;
|
|
|
|
namespace StudentWebClient
|
|
{
|
|
public class APIClient
|
|
{
|
|
|
|
public static StudentViewModel? Student { get; set; } = null;
|
|
|
|
}
|
|
} |