16 lines
397 B
C#
16 lines
397 B
C#
using SixLabors.ImageSharp.Processing;
|
|
|
|
namespace zero.Media;
|
|
|
|
public class MediaOptions
|
|
{
|
|
public string FolderPath { get; set; }
|
|
|
|
public string PublicPathPrefix { get; set; } = string.Empty;
|
|
|
|
public List<string> AllowedOtherFileExtensions { get; set; }
|
|
|
|
public List<string> AllowedImageFileExtensions { get; set; }
|
|
|
|
public Dictionary<string, ResizeOptions> Thumbnails { get; set; }
|
|
} |