13 lines
241 B
C#
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();
|
|
}
|