mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
10 lines
281 B
C#
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();
|
|
} |