lampac/Shared/Models/Catalog/PlaylistItem.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

24 lines
457 B
C#

using Newtonsoft.Json.Linq;
namespace Shared.Models.Catalog
{
public class PlaylistItem
{
public string id { get; set; }
public bool is_serial { get; set; }
public string title { get; set; }
public string original_title { get; set; }
public string img { get; set; }
public string year { get; set; }
public string card { get; set; }
public JObject args { get; set; }
}
}