mirror of
https://github.com/metatube-community/jellyfin-plugin-metatube.git
synced 2026-07-17 03:50:42 +08:00
Add ProviderIdModel
This commit is contained in:
@@ -2,11 +2,14 @@ using System.Text.Json.Serialization;
|
||||
|
||||
namespace Jellyfin.Plugin.JavTube.Models;
|
||||
|
||||
public class ProviderInfoModel
|
||||
public class ProviderIdModel
|
||||
{
|
||||
[JsonPropertyName("homepage")] public string Homepage { get; set; }
|
||||
|
||||
[JsonPropertyName("id")] public string Id { get; set; }
|
||||
|
||||
[JsonPropertyName("provider")] public string Provider { get; set; }
|
||||
}
|
||||
|
||||
public class ProviderInfoModel : ProviderIdModel
|
||||
{
|
||||
[JsonPropertyName("homepage")] public string Homepage { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user