aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Post/CreatePostWebModel.cs
blob: 256055a6b50a6a021863b19f367842f4b1263978 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;
using Microsoft.AspNetCore.Http;

namespace DevHive.Web.Models.Post
{
    public class CreatePostWebModel
	{
		[NotNull]
		[Required]
		public string Message { get; set; }

		public List<IFormFile> Files { get; set; }
	}
}