Updated code to correct build errors for Jelyfin.Data and Jellyfin.Database.Implementations

This commit is contained in:
2026-02-19 15:51:56 -05:00
parent f47555f2aa
commit d5fdbec943
317 changed files with 17235 additions and 3473 deletions
+3 -1
View File
@@ -2,6 +2,8 @@
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
#pragma warning disable SA1200 // using directive or a using-alias directive is placed outside of a namespace element
using System;
namespace Jellyfin.Data.Events
@@ -18,7 +20,7 @@ namespace Jellyfin.Data.Events
/// <param name="arg">The argument.</param>
public GenericEventArgs(T arg)
{
Argument = arg;
this.Argument = arg;
}
/// <summary>