We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7927a95 commit 21ae89bCopy full SHA for 21ae89b
src/ElectronNET.API/API/Entities/TitleBarOverlay.cs
@@ -4,7 +4,11 @@ public class TitleBarOverlay
4
{
5
private readonly bool? _value;
6
7
- private TitleBarOverlay(bool value) => _value = value;
+ public TitleBarOverlay()
8
+ {
9
+ }
10
+
11
+ private TitleBarOverlay(bool value) : this() => _value = value;
12
13
public string Color { get; set; }
14
@@ -15,4 +19,4 @@ public class TitleBarOverlay
15
19
public static implicit operator bool?(TitleBarOverlay titleBarOverlay) => titleBarOverlay?._value;
16
20
17
21
public static implicit operator TitleBarOverlay(bool value) => new(value);
18
-}
22
+}
0 commit comments