mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 20:57:22 +01:00
12 lines
241 B
C#
12 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();
|
|
}
|