mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03:00
Enable TreatWarningsAsErrors for MediaBrowser.Model
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
#nullable disable
|
||||
#pragma warning disable CS1591
|
||||
|
||||
using System;
|
||||
@@ -8,15 +7,15 @@ namespace MediaBrowser.Model.Session
|
||||
{
|
||||
public class GeneralCommand
|
||||
{
|
||||
public GeneralCommandType Name { get; set; }
|
||||
|
||||
public Guid ControllingUserId { get; set; }
|
||||
|
||||
public Dictionary<string, string> Arguments { get; set; }
|
||||
|
||||
public GeneralCommand()
|
||||
{
|
||||
Arguments = new Dictionary<string, string>();
|
||||
}
|
||||
|
||||
public GeneralCommandType Name { get; set; }
|
||||
|
||||
public Guid ControllingUserId { get; set; }
|
||||
|
||||
public Dictionary<string, string> Arguments { get; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user