Files
2025-08-22 13:07:48 +09:00

13 lines
240 B
C#

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