using System.Collections.Generic; using System.Text.Json.Serialization; using Jellyfin.Extensions.Json.Converters; namespace Jellyfin.Extensions.Tests.Json.Models { /// /// The generic body IReadOnlyList model. /// /// The value type. public class GenericBodyIReadOnlyListModel { /// /// Gets or sets the value. /// [JsonConverter(typeof(JsonCommaDelimitedArrayConverterFactory))] public IReadOnlyList Value { get; set; } = default!; } }