SPMS_API/SPMS.Application/DTOs/Device/DeviceExportRequestDto.cs

25 lines
598 B
C#

using System.Text.Json.Serialization;
namespace SPMS.Application.DTOs.Device;
public class DeviceExportRequestDto
{
[JsonPropertyName("platform")]
public string? Platform { get; set; }
[JsonPropertyName("push_agreed")]
public bool? PushAgreed { get; set; }
[JsonPropertyName("tags")]
public List<string>? Tags { get; set; }
[JsonPropertyName("is_active")]
public bool? IsActive { get; set; }
[JsonPropertyName("keyword")]
public string? Keyword { get; set; }
[JsonPropertyName("marketing_agreed")]
public bool? MarketingAgreed { get; set; }
}