From a406fd49e843490d478852a8f88c8799eaa91d40 Mon Sep 17 00:00:00 2001 From: Victor Milovanov Date: Tue, 21 Jan 2020 15:10:27 -0800 Subject: [PATCH] fixed nullability in IAppWindow members --- IAppWindow.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IAppWindow.cs b/IAppWindow.cs index b67e5ed..935988f 100644 --- a/IAppWindow.cs +++ b/IAppWindow.cs @@ -12,9 +12,9 @@ public interface IAppWindow Rect Bounds { get; } Task GetBounds(); Task GetClientBounds(); - string Title { get; } - Task Activate(); - Task BringToFront(); + string? Title { get; } + Task Activate(); + Task BringToFront(); bool IsMinimized { get; } bool IsResizable { get; } bool IsVisible { get; }