diff --git a/Models/Song.cs b/Models/Song.cs new file mode 100644 index 0000000..f82eb93 --- /dev/null +++ b/Models/Song.cs @@ -0,0 +1,15 @@ +using System; + +namespace Icarus.Models +{ + public class Song + { + public string Title { get; set; } + public string Album { get; set; } + public string Artist { get; set; } + public int Year { get; set; } + public string Genre { get; set; } + public int Duration { get; set; } + public byte[] SongFile { get; set; } + } +}