namespace Shared.Models.Base
{
public class VastConf
{
public VastConf() { }
public VastConf(string url, string msg)
{
this.url = url;
this.msg = msg;
}
public string url { get; set; }
public string msg { get; set; }
///
/// ru,ua,kz,etc
///
public string region { get; set; }
///
/// 'android','noname','webos','tizen','apple','browser','nw','philips','orsay','apple_tv','netcast','electron'
///
public string platform { get; set; }
///
/// tv, mobile
///
public string screen { get; set; }
}
}