Files
jellyfin-jellyfin-1/tests/Jellyfin.Extensions.Tests/Json/Models/GenericBodyIReadOnlyListModel.cs

20 lines
601 B
C#
Raw Normal View History

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