Files
nadekobot/src/NadekoBot/Db/Models/RotatingPlayingStatus.cs
2021-12-29 06:07:16 +01:00

8 lines
196 B
C#

#nullable disable
namespace NadekoBot.Services.Database.Models;
public class RotatingPlayingStatus : DbEntity
{
public string Status { get; set; }
public ActivityType Type { get; set; }
}