I have a project that is using FilePond to upload images. I would like to create thumbnails of the images and preserve the original. I found the documentation for ImageTransformVariants for JS, but nothing on what the object should look like for the FilePondOptions in Blazor (c#) to make it work.
Here is what I have so far.
private readonly FilePondOptions FilePondOptions = new() { MaxFiles = 20, AllowMultiple = true, EnabledPlugins = [FilePondPluginType.ImagePreview, FilePondPluginType.ImageTransform], ImageTransformVariantsIncludeOriginal = true, ImageTransformVariants = //What should the passed object look like for thumbnails? };