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