Files
LightlessClient/LightlessSync/UI/Components/IDrawFolder.cs

12 lines
239 B
C#

using System.Collections.Immutable;
namespace LightlessSync.UI.Components;
public interface IDrawFolder
{
int TotalPairs { get; }
int OnlinePairs { get; }
IImmutableList<DrawUserPair> DrawPairs { get; }
void Draw();
}