15 lines
382 B
C#
15 lines
382 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace ModVersionChecker.repository.api.dto
|
|
{
|
|
public class AppVersionsResponse
|
|
{
|
|
public AppVersionsResponse() { }
|
|
|
|
[JsonPropertyName("id")]
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("latestVersion")]
|
|
public string LatestVersion { get; set; } = string.Empty;
|
|
}
|
|
} |