mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
9 lines
197 B
C#
9 lines
197 B
C#
using Discord;
|
|
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class RotatingPlayingStatus : DbEntity
|
|
{
|
|
public string Status { get; set; }
|
|
public ActivityType Type { get; set; }
|
|
} |