using SixLabors.ImageSharp.Processing; namespace zero.Media; public class MediaOptions { public string FolderPath { get; set; } public string PublicPathPrefix { get; set; } = string.Empty; public List AllowedOtherFileExtensions { get; set; } public List AllowedImageFileExtensions { get; set; } public Dictionary Thumbnails { get; set; } }