mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
14 lines
No EOL
300 B
C#
14 lines
No EOL
300 B
C#
using System.Collections.Generic;
|
|
|
|
using DSharpPlus.Entities;
|
|
|
|
using PluralKit.Core;
|
|
|
|
namespace PluralKit.Bot
|
|
{
|
|
public interface IListRenderer
|
|
{
|
|
int MembersPerPage { get; }
|
|
void RenderPage(DiscordEmbedBuilder eb, PKSystem system, IEnumerable<PKListMember> members);
|
|
}
|
|
} |