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

22 lines
572 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Shared.Models.Online.RutubeMovie
{
public struct Result
{
public string id { get; set; }
public string title { get; set; }
public long duration { get; set; }
public Сategory category { get; set; }
public bool is_hidden { get; set; }
public bool is_deleted { get; set; }
public bool is_adult { get; set; }
public bool is_locked { get; set; }
public bool is_audio { get; set; }
public bool is_paid { get; set; }
public bool is_livestream { get; set; }
}
}