OF-DL/OF DL/Models/LatestReleaseAPIResponse.cs

10 lines
186 B
C#

using Newtonsoft.Json;
namespace OF_DL.Models;
public class LatestReleaseAPIResponse
{
[JsonProperty(PropertyName = "tag_name")]
public string TagName { get; set; } = "";
}