2023-05-20 03:26:15 +04:00

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;
}
}