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

10 lines
281 B
C#

#nullable disable
namespace NadekoBot.Services.Database.Models;
public class MusicPlaylist : DbEntity
{
public string Name { get; set; }
public string Author { get; set; }
public ulong AuthorId { get; set; }
public List<PlaylistSong> Songs { get; set; } = new();
}