#93: Reduce build errors

This commit is contained in:
kdeng00
2024-07-27 13:08:58 -04:00
parent 6898776f5b
commit 37441fea45
41 changed files with 286 additions and 277 deletions
+3 -1
View File
@@ -2,7 +2,9 @@ namespace Icarus.Models;
public class SongData
{
#region Properties
public int ID { get; set; }
public byte[] Data { get; set; }
public byte[]? Data { get; set; }
public int SongID { get; set; }
#endregion
}