Files
mixtape/zero.Core/Media/MediaOptions.cs
T

16 lines
381 B
C#
Raw Normal View History

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