public Item(string id, string title, PluginMediaType type, IPluginContainer parent, TranslationType translation, string url) { _id = id; if (!string.IsNullOrEmpty(parent.Id)) _id = parent.Id + "_" + id; _title = title; _type = type; _parent = parent; _url = url; Translation = translation; }
public Item(string id, string title, PluginMediaType type, IPluginContainer parent, TranslationType translation, string url) { _id = id; if (!string.IsNullOrEmpty(parent.Id)) { _id = parent.Id + "_" + id; } _title = title; _type = type; _parent = parent; _url = url; Translation = translation; }
public YoutubeItem(string id, string title, PluginMediaType type, IPluginContainer parent, TranslationType translation, string url) : base(id, title, type, parent, translation, "") { ItemUrl = url; }
public TorrentItem(string id, string title, PluginMediaType type, IPluginContainer parent, TranslationType translation, string url) : base(id, title, type, parent, translation, "") { _itemurl = url; Translation = TranslationType.VoD; }