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