1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 09:38:31 +00:00

Update RGB.NET.Core/Update/CustomUpdateData.cs

Co-authored-by: DarthAffe <darthaffe@wyrez.org>
This commit is contained in:
Shaun Tonstad 2024-10-29 20:19:29 -05:00 committed by GitHub
parent c34435b958
commit da51871e04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -51,7 +51,9 @@ public interface ICustomUpdateData
public sealed class CustomUpdateData : ICustomUpdateData
{
#region Properties & Fields
public static readonly CustomUpdateData Empty = new CustomUpdateData();
// ReSharper disable once InconsistentNaming
public static readonly CustomUpdateData Empty = new();
private readonly Dictionary<string, object?> _data = [];