* Implement temporary file configuration endpoint * Update MaxfileSize to be a string. * Make max file size a nullable integer --------- Co-authored-by: Elitsa <elm@umbraco.dk>
13 lines
425 B
C#
13 lines
425 B
C#
namespace Umbraco.Cms.Api.Management.ViewModels.TemporaryFile;
|
|
|
|
public class TemporaryFileConfigurationResponseModel
|
|
{
|
|
public string[] ImageFileTypes { get; set; } = Array.Empty<string>();
|
|
|
|
public string[] DisallowedUploadedFilesExtensions { get; set; } = Array.Empty<string>();
|
|
|
|
public string[] AllowedUploadedFileExtensions { get; set; } = Array.Empty<string>();
|
|
|
|
public int? MaxFileSize { get; set; }
|
|
}
|