8abb196e1d
* Change id types * Updated more models * Saving changes * Should be it
11 lines
197 B
C#
11 lines
197 B
C#
namespace Icarus.Models;
|
|
|
|
public class SongData
|
|
{
|
|
#region Properties
|
|
public Guid ID { get; set; }
|
|
public byte[]? Data { get; set; }
|
|
public int SongID { get; set; }
|
|
#endregion
|
|
}
|