#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
+4 -2
View File
@@ -4,8 +4,10 @@ namespace Icarus.Models;
public class SongResult
{
#region Properties
[JsonProperty("message")]
public string Message { get; set; }
public string? Message { get; set; }
[JsonProperty("song_title")]
public string SongTitle { get; set; }
public string? SongTitle { get; set; }
#endregion
}