yavsc/Yavsc/ViewModels/UserFiles/BlogFilesPost.cs

11 lines
253 B
C#
Raw Normal View History

2016-05-30 18:30:35 +02:00
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; }
}