mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
14 lines
459 B
C#
14 lines
459 B
C#
#nullable disable
|
|
using NadekoBot.Db.Models;
|
|
|
|
namespace NadekoBot.Modules.Administration.Services;
|
|
|
|
public interface IBotActivityService
|
|
{
|
|
Task SetActivityAsync(string game, ActivityType? type);
|
|
Task SetStreamAsync(string name, string link);
|
|
bool ToggleRotatePlaying();
|
|
Task AddPlaying(ActivityType statusType, string status);
|
|
Task<string> RemovePlayingAsync(int index);
|
|
IReadOnlyList<RotatingPlayingStatus> GetRotatingStatuses();
|
|
} |