13 lines
311 B
C#
13 lines
311 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.AppConfig;
|
|
|
|
public class AppVersionRequestDto
|
|
{
|
|
[JsonPropertyName("platform")]
|
|
public string Platform { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("app_version")]
|
|
public string AppVersion { get; set; } = string.Empty;
|
|
}
|