mirror of
https://github.com/D4M13N-D3V/comissions-app-core-api.git
synced 2025-03-14 10:04:55 +00:00
fix
This commit is contained in:
parent
fe37a5ae7d
commit
0360e3a1e6
@ -1,10 +1,12 @@
|
|||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
namespace comissions.app.database.Models.Request;
|
namespace comissions.app.database.Models.Request;
|
||||||
|
|
||||||
public class RequestCreateModel
|
public class RequestCreateModel
|
||||||
{
|
{
|
||||||
public int ArtistId { get; set; }
|
[FromForm]public int ArtistId { get; set; }
|
||||||
public string Message { get; set; }
|
[FromForm]public string Message { get; set; }
|
||||||
public decimal Amount { get; set; }
|
[FromForm]public decimal Amount { get; set; }
|
||||||
|
|
||||||
public List<IFormFile> Files { get; set; }
|
[FromForm]public List<IFormFile> Files { get; set; }
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user