Fix build

This commit is contained in:
Bond-009
2020-06-03 11:54:01 +02:00
parent 40502a33e0
commit 2dbb9d4895
11 changed files with 12 additions and 74 deletions
@@ -1,19 +0,0 @@
#nullable disable
#pragma warning disable CS1591
using System;
namespace MediaBrowser.Model.Devices
{
public class ContentUploadHistory
{
public string DeviceId { get; set; }
public LocalFileInfo[] FilesUploaded { get; set; }
public ContentUploadHistory()
{
FilesUploaded = Array.Empty<LocalFileInfo>();
}
}
}
+1 -1
View File
@@ -4,6 +4,6 @@ namespace MediaBrowser.Model.Devices
{
public class DeviceOptions
{
public string CustomName { get; set; }
public string? CustomName { get; set; }
}
}
@@ -1,16 +0,0 @@
#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.Devices
{
public class LocalFileInfo
{
public string Name { get; set; }
public string Id { get; set; }
public string Album { get; set; }
public string MimeType { get; set; }
}
}
@@ -1,3 +1,5 @@
#nullable disable
using System.Collections.Generic;
namespace MediaBrowser.Model.SyncPlay
@@ -1,3 +1,5 @@
#nullable disable
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
@@ -1,3 +1,5 @@
#nullable disable
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
@@ -1,3 +1,5 @@
#nullable disable
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
@@ -1,3 +1,5 @@
#nullable disable
using System;
namespace MediaBrowser.Model.Updates