IFileService, настройки хранилища. EsppDataController

This commit is contained in:
Mikhail Trubnikov
2023-08-24 17:03:12 +10:00
parent f3914c07a4
commit 49ba6569b1
10 changed files with 212 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
namespace PARR.API.Domain
{
public class UploadResult
{
public required string FileName { get; set; }
public required string Path { get; set; }
}
}