mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
13 lines
351 B
C#
13 lines
351 B
C#
using System.Collections.Generic;
|
|
|
|
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 List<PlaylistSong>();
|
|
}
|
|
}
|