Files
LightlessClient/MareSynchronos/UI/Components/IDrawFolder.cs
2025-08-21 21:38:57 +02:00

13 lines
241 B
C#

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