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

Added missing doc comment

This commit is contained in:
Darth Affe 2023-03-05 18:06:08 +01:00
parent 30ccfdcd85
commit 4a9bbb64dc

View File

@ -19,6 +19,7 @@ public abstract class UpdateQueue<TIdentifier, TData> : IUpdateQueue<TIdentifier
private readonly IDeviceUpdateTrigger _updateTrigger; private readonly IDeviceUpdateTrigger _updateTrigger;
private readonly Dictionary<TIdentifier, TData> _currentDataSet = new(); private readonly Dictionary<TIdentifier, TData> _currentDataSet = new();
/// <inheritdoc />
public bool RequiresFlush { get; private set; } public bool RequiresFlush { get; private set; }
#endregion #endregion