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

19 lines
383 B
C#

#nullable disable
namespace NadekoBot.Services.Database.Models;
public class PlaylistSong : DbEntity
{
public string Provider { get; set; }
public MusicType ProviderType { get; set; }
public string Title { get; set; }
public string Uri { get; set; }
public string Query { get; set; }
}
public enum MusicType
{
Radio,
YouTube,
Local,
Soundcloud
}