Files
Samuele Locatelli 76708b49fb LAND:
- ok spedizione ZIP
- ok password zip
- ok test in DEV
2024-10-18 15:10:29 +02:00

18 lines
386 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.AppAuth.DTO
{
public class UploadResult
{
public bool Uploaded { get; set; }
public string FileName { get; set; } = "";
public string StoredFileName { get; set; } = "";
public int ErrorCode { get; set; }
}
}