22 lines
543 B
C#
22 lines
543 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.AppConfig;
|
|
|
|
public class AppSettingsResponseDto
|
|
{
|
|
[JsonPropertyName("min_app_version")]
|
|
public string? MinAppVersion { get; set; }
|
|
|
|
[JsonPropertyName("is_maintenance")]
|
|
public bool IsMaintenance { get; set; }
|
|
|
|
[JsonPropertyName("maintenance_msg")]
|
|
public string? MaintenanceMsg { get; set; }
|
|
|
|
[JsonPropertyName("cs_email")]
|
|
public string? CsEmail { get; set; }
|
|
|
|
[JsonPropertyName("cs_phone")]
|
|
public string? CsPhone { get; set; }
|
|
}
|