ScriptCore: Properly use nullable

This commit is contained in:
Simon Lübeß
2024-01-12 00:17:40 +01:00
parent 3d0c010139
commit 55b4be05c2
6 changed files with 109 additions and 76 deletions
+1 -1
View File
@@ -18,5 +18,5 @@ public sealed class ShowInEditorAttribute : Attribute
/// The label with which the field will be shown in the editor.
/// If not specified, the fields name will be used.
/// </summary>
public string DisplayName { get; set; } = null;
public string? DisplayName { get; set; } = null;
}