Minor refactoring

This commit is contained in:
phoenix
2025-02-27 19:41:08 -05:00
parent 14385fee39
commit e5a34ac1a1
3 changed files with 6 additions and 5 deletions
+3 -3
View File
@@ -219,11 +219,11 @@ public class SongDataController : BaseController
{
#region Properties
[Newtonsoft.Json.JsonProperty("message")]
public string Message { get; set; }
public string? Message { get; set; }
[Newtonsoft.Json.JsonProperty("subject")]
public string Subject { get; set; }
public string? Subject { get; set; }
[Newtonsoft.Json.JsonProperty("data")]
public List<Song> Songs { get; set; }
public List<Song>? Songs { get; set; }
#endregion
}
}