make local groups more usable for pause/resume

This commit is contained in:
rootdarkarchon
2023-10-27 17:25:15 +02:00
parent cdcfaa9369
commit 1a64f08841
8 changed files with 144 additions and 104 deletions

View File

@@ -1,11 +1,12 @@

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