14 lines
478 B
C#
14 lines
478 B
C#
namespace OpenArchival.Blazor.CustomComponents;
|
|
|
|
public class FileUploadOptions
|
|
{
|
|
public static string Key = "FileUploadOptions";
|
|
public required long MaxUploadSizeBytes { get; set; }
|
|
public required string UploadFolderPath { get; set; }
|
|
public required string ThumbnailFolderPath { get; set; }
|
|
public required int MaxFileCount { get; set; }
|
|
|
|
public int SmallThumbnailSize { get; set; } = 150;
|
|
public int LargeThumbnailSize { get; set; } = 600;
|
|
}
|