1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48: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 Dictionary<TIdentifier, TData> _currentDataSet = new();
/// <inheritdoc />
public bool RequiresFlush { get; private set; }
#endregion