14 lines
240 B
C#
14 lines
240 B
C#
using System.Net.Http.Headers;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
using TourCompanyContracts.ViewModels;
|
|
|
|
namespace TourCompanyClientApp
|
|
{
|
|
public class APIClient
|
|
{
|
|
|
|
public static UserViewModel? User { get; set; } = null;
|
|
}
|
|
}
|