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