blob: 51b16bccb60d5f6e8afcc6e87d8e0cda906f9c38 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Collections.Generic;
using Microsoft.AspNetCore.Http;
namespace DevHive.Services.Models.Post
{
public class UpdatePostServiceModel
{
public Guid PostId { get; set; }
public Guid CreatorId { get; set; }
public string NewMessage { get; set; }
public List<IFormFile> Files { get; set; }
}
}
|