using System.Text.Json; using System.Text.Json.Serialization; namespace SPMS.Application.DTOs.Push; public class PushTargetDto { [JsonPropertyName("type")] public string Type { get; set; } = string.Empty; [JsonPropertyName("value")] public JsonElement? Value { get; set; } }