1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

Improved docs

This commit is contained in:
Darth Affe 2021-09-06 01:18:16 +02:00
parent 924b121f64
commit cdae699c8d

View File

@ -13,7 +13,6 @@ namespace RGB.NET.Core
/// <inheritdoc cref="IDisposable" />
/// <summary>
/// Represents a RGB-surface containing multiple devices.
/// Represents a RGB-surface containing multiple devices.
/// </summary>
public sealed class RGBSurface : AbstractBindable, IDisposable
{
@ -27,11 +26,13 @@ namespace RGB.NET.Core
/// <summary>
/// Gets a readonly list containing all loaded <see cref="IRGBDevice"/>.
/// This collection should be locked when enumerated in a multi-threaded application.
/// </summary>
public IReadOnlyList<IRGBDevice> Devices { get; }
/// <summary>
/// Gets a readonly list containing all registered <see cref="IUpdateTrigger"/>.
/// This collection should be locked when enumerated in a multi-threaded application.
/// </summary>
public IReadOnlyList<IUpdateTrigger> UpdateTriggers { get; }