Files
icarus/Models/SongResult.cs
T
kdeng00 c17c9cd329 Migrating to modern c# namespace
Using the short namesapce declaration for conciseness
2023-04-09 12:34:06 -04:00

14 lines
238 B
C#

using System;
using Newtonsoft.Json;
namespace Icarus.Models;
public class SongResult
{
[JsonProperty("message")]
public string Message { get; set; }
[JsonProperty("song_title")]
public string SongTitle { get; set; }
}