using Newtonsoft.Json;
using System.Collections.Generic;

namespace Adplay.Model
{

    public class ShowAdRequestModel
    {
        [JsonProperty("types")] public List<string> types { get; set; } = new();
        [JsonProperty("google_ad_id")] public string GoogleAdId { get; set; } = string.Empty;
        [JsonProperty("device_id")] public string DeviceId { get; set; } = string.Empty;
    }
}
