#pragma warning disable CA1002 // Do not expose generic lists
#pragma warning disable CA2227 // Collection properties should be read only
using System.Collections.Generic;
using System.Text.Json.Serialization;
using Jellyfin.Extensions.Json.Converters;
namespace Jellyfin.Extensions.Tests.Json.Models
{
///
/// The generic body List model.
///
/// The value type.
public sealed class GenericBodyListModel
{
///
/// Gets or sets the value.
///
[JsonConverter(typeof(JsonCommaDelimitedCollectionConverterFactory))]
public List Value { get; set; } = default!;
}
}