2021-06-19 18:02:33 +02:00
|
|
|
using System.Collections.Generic;
|
2020-10-11 21:09:15 -06:00
|
|
|
using System.Text.Json.Serialization;
|
2021-06-19 18:02:33 +02:00
|
|
|
using Jellyfin.Extensions.Json.Converters;
|
2020-10-11 21:09:15 -06:00
|
|
|
|
2021-06-19 18:02:33 +02:00
|
|
|
namespace Jellyfin.Extensions.Tests.Json.Models
|
2020-10-11 21:09:15 -06:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2020-10-29 11:32:02 -06:00
|
|
|
/// The generic body <c>IReadOnlyList</c> model.
|
2020-10-11 21:09:15 -06:00
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T">The value type.</typeparam>
|
2020-10-29 11:32:02 -06:00
|
|
|
public class GenericBodyIReadOnlyListModel<T>
|
2020-10-11 21:09:15 -06:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the value.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonConverter(typeof(JsonCommaDelimitedArrayConverterFactory))]
|
2020-10-29 11:32:02 -06:00
|
|
|
public IReadOnlyList<T> Value { get; set; } = default!;
|
2020-10-11 21:09:15 -06:00
|
|
|
}
|
2020-10-29 11:32:02 -06:00
|
|
|
}
|