17 lines
390 B
C#
17 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOB_MAN.Core.DTO
|
|
{
|
|
public class UploadResultDTO
|
|
{
|
|
public bool Uploaded { get; set; }
|
|
public string FileName { get; set; } = "";
|
|
public string StoredFileName { get; set; } = "";
|
|
public int ErrorCode { get; set; }
|
|
}
|
|
}
|