lampac/Shared/Models/SISI/OnResult/OnStreamResult.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

21 lines
515 B
C#

using Shared.Models.SISI.Base;
namespace Shared.Models.SISI.OnResult
{
public class OnStreamResult
{
public OnStreamResult(int recomendsCount)
{
recomends = new PlaylistItem[recomendsCount];
}
public Dictionary<string, string> qualitys { get; set; }
public Dictionary<string, string> qualitys_proxy { get; set; }
public Dictionary<string, string> headers_stream { get; set; }
public PlaylistItem[] recomends { get; set; }
}
}