11 lines
272 B
C#
11 lines
272 B
C#
namespace Core
|
|
{
|
|
public class UploadResult
|
|
{
|
|
public bool Uploaded { get; set; } = false;
|
|
public string FileName { get; set; } = "";
|
|
public string StoredFileName { get; set; } = "";
|
|
public int ErrorCode { get; set; } = 0;
|
|
}
|
|
}
|