lampac/DLNA/Models/DlnaModel.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

36 lines
707 B
C#

using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
namespace DLNA.Models
{
public class DlnaModel
{
public string name { get; set; }
public string uri { get; set; }
public string img { get; set; }
public string preview { get; set; }
public List<Subtitle> subtitles { get; set; }
public string path { get; set; }
public string type { get; set; }
public long length { get; set; }
public DateTime creationTime { get; set; }
public int s { get; set; }
public int e { get; set; }
public JObject tmdb { get; set; }
public JObject episode { get; set; }
}
}