kreta/KretaWeb/Configuration/IUploadFileValidationConfiguration.cs
2024-03-13 00:33:46 +01:00

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; }
}
}