using HospitalContracts.ViewModels; namespace HospitalWebApp { /// /// API-клиент /// public static class APIClient { /// /// Авторизованный доктор /// public static DoctorViewModel? Doctor { get; set; } = null; } }