namespace Jellyfin.Extensions.Json.Converters { /// /// Convert comma delimited string to array of type. /// /// Type to convert to. public sealed class JsonCommaDelimitedArrayConverter : JsonDelimitedArrayConverter { /// /// Initializes a new instance of the class. /// public JsonCommaDelimitedArrayConverter() : base() { } /// protected override char Delimiter => ','; } }