c17c9cd329
Using the short namesapce declaration for conciseness
12 lines
191 B
C#
12 lines
191 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; }
|
|
}
|