Merge pull request #6473 from Bond-009/nullable7

Enable nullable for more files
This commit is contained in:
Claus Vium
2021-09-01 09:28:19 +02:00
committed by GitHub
12 changed files with 42 additions and 58 deletions

View File

@@ -1,12 +1,16 @@
#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.Configuration
{
public class MediaPathInfo
{
public MediaPathInfo(string path)
{
Path = path;
}
public string Path { get; set; }
public string NetworkPath { get; set; }
public string? NetworkPath { get; set; }
}
}