Added Song model #2

This commit is contained in:
amazing-username
2019-03-11 22:43:18 -04:00
parent ab71bb8246
commit d0e1c8ac5a
+15
View File
@@ -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; }
}
}