using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

namespace Adplay.Model
{
    [JsonConverter(typeof(StringEnumConverter))]
    public enum CreativeFormatType
    {
        OTHER = -1,
        SPLASH = 0,
        BANNER = 1,
        POPUP = 2,
    }
}