Files
ClubPenguinClient/MareSynchronos/UI/Components/IDrawFolder.cs
2023-10-27 17:25:15 +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();
}