lampac/Shared/Models/Base/VastConf.cs
lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

33 lines
749 B
C#

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; }
/// <summary>
/// ru,ua,kz,etc
/// </summary>
public string region { get; set; }
/// <summary>
/// 'android','noname','webos','tizen','apple','browser','nw','philips','orsay','apple_tv','netcast','electron'
/// </summary>
public string platform { get; set; }
/// <summary>
/// tv, mobile
/// </summary>
public string screen { get; set; }
}
}