10 lines
188 B
C#
10 lines
188 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.AppConfig;
|
|
|
|
public class AppConfigResponseDto
|
|
{
|
|
[JsonPropertyName("url")]
|
|
public string? Url { get; set; }
|
|
}
|