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