14 lines
294 B
C#
14 lines
294 B
C#
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; }
|
|
}
|