All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 35s
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
12 lines
239 B
C#
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();
|
|
}
|