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

namespace InMobiAds.Api
{
	[Serializable]
	public class AdMetaInfo : EventArgs
	{
	    public string CreativeID { get; set; }

	    public double Bid { get; set; }

	    public JObject BidInfo { get; set; }

	    public string BidKeyword { get; set; }



	}
}