#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 Songs { get; set; } = new(); }