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