10 lines
188 B
C#
10 lines
188 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Entities;
|
|
|
|
public class LatestReleaseAPIResponse
|
|
{
|
|
[JsonProperty(PropertyName = "tag_name")]
|
|
public string TagName { get; set; } = "";
|
|
}
|