fixe l'upload

This commit is contained in:
Paul Schneider 2016-05-30 18:30:35 +02:00
commit 9d078e4e8e
14 changed files with 140 additions and 30 deletions

View file

@ -0,0 +1,11 @@
using System.ComponentModel.DataAnnotations;
using System.Collections.Generic;
using Microsoft.AspNet.Http;
public class BlogFilesPost {
[Required]
public long PostId {get; set; }
[Required]
public IList<IFormFile> File { get; set; }
}