13 lines
211 B
C#
13 lines
211 B
C#
using System;
|
|
using System.Text;
|
|
|
|
namespace Icarus.Models
|
|
{
|
|
public class SongData
|
|
{
|
|
public int ID { get; set; }
|
|
public byte[] Data { get; set; }
|
|
public int SongID { get; set; }
|
|
}
|
|
}
|