2021-11-25 15:38:36 +01:00
|
|
|
using SixLabors.ImageSharp.Processing;
|
|
|
|
|
|
|
|
|
|
namespace zero.Media;
|
|
|
|
|
|
|
|
|
|
public class MediaOptions
|
|
|
|
|
{
|
|
|
|
|
public string FolderPath { get; set; }
|
|
|
|
|
|
2021-12-16 13:55:09 +01:00
|
|
|
public string PublicPathPrefix { get; set; } = string.Empty;
|
2021-11-25 15:38:36 +01:00
|
|
|
|
|
|
|
|
public List<string> AllowedOtherFileExtensions { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<string> AllowedImageFileExtensions { get; set; }
|
|
|
|
|
|
|
|
|
|
public Dictionary<string, ResizeOptions> Thumbnails { get; set; }
|
|
|
|
|
}
|