All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 48s
11 lines
226 B
C#
11 lines
226 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.MediaBarEnhanced.Model
|
|
{
|
|
public class PatchRequestPayload
|
|
{
|
|
[JsonPropertyName("contents")]
|
|
public string? Contents { get; set; }
|
|
}
|
|
}
|