mirror of
https://github.com/metatube-community/jellyfin-plugin-metatube.git
synced 2026-05-05 04:50:29 +08:00
15 lines
332 B
C#
15 lines
332 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.MetaTube.Metadata;
|
|
|
|
public class ProviderInfo
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonPropertyName("provider")]
|
|
public string Provider { get; set; }
|
|
|
|
[JsonPropertyName("homepage")]
|
|
public string Homepage { get; set; }
|
|
} |