Files
defnotken 906f401940
All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 35s
1.12.4
Co-authored-by: cake <cake@noreply.git.lightless-sync.org>
Co-authored-by: cake <admin@cakeandbanana.nl>
Co-authored-by: azyges <229218900+azyges@users.noreply.github.com>
Co-authored-by: choco <choco@patat.nl>
Co-authored-by: choco <choco@noreply.git.lightless-sync.org>
Co-authored-by: defnotken <itsdefnotken@gmail.com>
Reviewed-on: #73
2025-11-12 21:10:40 +01:00

12 lines
239 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();
}