using System.Collections.Generic; namespace Kreta.Web.Configuration { public interface IUploadFileValidationConfiguration { int ImportMaxAllowedFileSizeInBytes { get; } IEnumerable ImportAllowedFileExtensions { get; } IEnumerable AscImportAllowedFileExtensions { get; } } }