9 lines
151 B
C#
9 lines
151 B
C#
namespace MareSynchronos.UI.Components;
|
|
|
|
public interface IDrawFolder
|
|
{
|
|
int TotalPairs { get; }
|
|
int OnlinePairs { get; }
|
|
void Draw();
|
|
}
|