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