mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-06 09:29:33 -06:00
set WarningsAsErrors = true
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
|
||||
public class PlexDirectory
|
||||
{
|
||||
public string Key { get; set; }
|
||||
public PlexDirectoryLocation[] Location { get; set; }
|
||||
public string? Key { get; set; }
|
||||
public PlexDirectoryLocation[]? Location { get; set; }
|
||||
}
|
||||
|
||||
public class PlexDirectoryLocation
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Path { get; set; }
|
||||
public string? Path { get; set; }
|
||||
}
|
||||
@@ -2,14 +2,14 @@
|
||||
|
||||
internal class PlexMedia
|
||||
{
|
||||
public string RatingKey { get; set; }
|
||||
public string? RatingKey { get; set; }
|
||||
public int Id { get; set; }
|
||||
public PlexPart[] Part { get; set; }
|
||||
public PlexPart[]? Part { get; set; }
|
||||
}
|
||||
|
||||
internal class PlexPart
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Key { get; set; }
|
||||
public string File { get; set; }
|
||||
public string? Key { get; set; }
|
||||
public string? File { get; set; }
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
internal class PlexMetadata
|
||||
{
|
||||
public string RatingKey { get; set; }
|
||||
public string Key { get; set; }
|
||||
public PlexMedia[] Media { get; set; }
|
||||
public string? RatingKey { get; set; }
|
||||
public string? Key { get; set; }
|
||||
public PlexMedia[]? Media { get; set; }
|
||||
}
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
|
||||
internal class PlexSections
|
||||
{
|
||||
public PlexSection MediaContainer { get; set; }
|
||||
public PlexSection? MediaContainer { get; set; }
|
||||
}
|
||||
|
||||
internal class PlexSection
|
||||
{
|
||||
public int Size { get; set; }
|
||||
public PlexDirectory[] Directory { get; set; }
|
||||
public PlexMetadata[] Metadata { get; set; }
|
||||
public PlexDirectory[]? Directory { get; set; }
|
||||
public PlexMetadata[]? Metadata { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user