Enable nullable for more files

This commit is contained in:
Bond_009
2023-03-07 21:51:48 +01:00
parent 1244502fa8
commit dab75d35d2
7 changed files with 109 additions and 145 deletions

View File

@@ -11,7 +11,7 @@ namespace MediaBrowser.Model.Dlna
[XmlAttribute("type")]
public DlnaProfileType Type { get; set; }
public ProfileCondition[]? Conditions { get; set; } = Array.Empty<ProfileCondition>();
public ProfileCondition[] Conditions { get; set; } = Array.Empty<ProfileCondition>();
[XmlAttribute("container")]
public string Container { get; set; } = string.Empty;