Added Song model #2
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user