feat: basic initial implementation of spotify client link validator and song submission form refs: NOISSUE
This commit is contained in:
@@ -6,4 +6,6 @@ public class Song
|
||||
public string? Name { get; set; }
|
||||
public string? Artist { get; set; }
|
||||
public string? Url { get; set; }
|
||||
public SongProvider? Provider { get; set; }
|
||||
public string? SpotifyId { get; set; }
|
||||
}
|
11
song_of_the_day/Data/SongProvider.cs
Normal file
11
song_of_the_day/Data/SongProvider.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
public enum SongProvider
|
||||
{
|
||||
Spotify,
|
||||
YouTube,
|
||||
YoutubeMusic,
|
||||
SoundCloud,
|
||||
Bandcamp,
|
||||
PlainHttp,
|
||||
NavidromeSharedLink,
|
||||
Other
|
||||
}
|
Reference in New Issue
Block a user