jellyfin/tests/Jellyfin.Extensions.Tests/Json/Models/GenericBodyArrayModel.cs

21 lines
721 B
C#
Raw Normal View History

using System.Diagnostics.CodeAnalysis;
2020-10-12 05:09:15 +02:00
using System.Text.Json.Serialization;
using Jellyfin.Extensions.Json.Converters;
2020-10-12 05:09:15 +02:00
namespace Jellyfin.Extensions.Tests.Json.Models
2020-10-12 05:09:15 +02:00
{
/// <summary>
/// The generic body model.
/// </summary>
/// <typeparam name="T">The value type.</typeparam>
public class GenericBodyArrayModel<T>
2020-10-12 05:09:15 +02:00
{
/// <summary>
/// Gets or sets the value.
/// </summary>
[SuppressMessage("Microsoft.Performance", "CA1819:Properties should not return arrays", MessageId = "Value", Justification = "Imported from ServiceStack")]
[JsonConverter(typeof(JsonCommaDelimitedArrayConverterFactory))]
public T[] Value { get; set; } = default!;
}
}