Fix default values missing in ClientCapabilities(Dto) (#11232)

This commit is contained in:
Niels van Velzen
2024-03-27 22:36:30 +01:00
committed by GitHub
parent 81c24cb9a8
commit 8d02c45e6c
2 changed files with 4 additions and 4 deletions

View File

@@ -35,11 +35,11 @@ namespace MediaBrowser.Model.Session
// TODO: Remove after 10.9
[Obsolete("Unused")]
[DefaultValue(false)]
public bool? SupportsContentUploading { get; set; }
public bool? SupportsContentUploading { get; set; } = false;
// TODO: Remove after 10.9
[Obsolete("Unused")]
[DefaultValue(false)]
public bool? SupportsSync { get; set; }
public bool? SupportsSync { get; set; } = false;
}
}