19 lines
461 B
C#
19 lines
461 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.AppConfig;
|
|
|
|
public class AppVersionResponseDto
|
|
{
|
|
[JsonPropertyName("latest_version")]
|
|
public string? LatestVersion { get; set; }
|
|
|
|
[JsonPropertyName("min_version")]
|
|
public string? MinVersion { get; set; }
|
|
|
|
[JsonPropertyName("is_force_update")]
|
|
public bool IsForceUpdate { get; set; }
|
|
|
|
[JsonPropertyName("update_url")]
|
|
public string? UpdateUrl { get; set; }
|
|
}
|