11 lines
236 B
C#
11 lines
236 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Web.Models
|
|
{
|
|
public interface IUploadFileModel
|
|
{
|
|
int MaxAllowedFileSizeInBytes { get; set; }
|
|
|
|
IEnumerable<string> AllowedFileExtensions { get; set; }
|
|
}
|
|
}
|