jellyfin-server/tests/Jellyfin.Common.Tests/Models/GenericBodyIReadOnlyListModel.cs

20 lines
588 B
C#
Raw Normal View History

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