init
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 48s

This commit is contained in:
CodeDevMLH
2026-01-06 02:17:48 +01:00
parent c35b86dd81
commit ba75b0175a
27 changed files with 6431 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using System.Text.Json.Serialization;
namespace Jellyfin.Plugin.MediaBarEnhanced.Model
{
public class PatchRequestPayload
{
[JsonPropertyName("contents")]
public string? Contents { get; set; }
}
}