13 lines
332 B
C#
13 lines
332 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Web.Configuration
|
|
{
|
|
public interface IUploadFileValidationConfiguration
|
|
{
|
|
int ImportMaxAllowedFileSizeInBytes { get; }
|
|
|
|
IEnumerable<string> ImportAllowedFileExtensions { get; }
|
|
|
|
IEnumerable<string> AscImportAllowedFileExtensions { get; }
|
|
}
|
|
}
|