14 lines
267 B
C#
14 lines
267 B
C#
using Newtonsoft.Json;
|
|
using FurnitureContracts.ViewModel;
|
|
using System.Net.Http.Headers;
|
|
using System.Text;
|
|
|
|
namespace ManagerWebClient
|
|
{
|
|
public class APIClient
|
|
{
|
|
|
|
public static ManagerViewModel? Manager { get; set; } = null;
|
|
|
|
}
|
|
} |