mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
13 lines
356 B
C#
13 lines
356 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.Core.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 List<PlaylistSong>();
|
|
}
|
|
}
|