2
0
forked from sim0n00ps/OF-DL
OF-DL/OF DL.Core/Models/LatestReleaseApiResponse.cs

10 lines
183 B
C#

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