phase 1
This commit is contained in:
15
ModVersionChecker/repository/api/dto/AppVersionsResponse.cs
Normal file
15
ModVersionChecker/repository/api/dto/AppVersionsResponse.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user