11 lines
248 B
C#
11 lines
248 B
C#
namespace Core
|
|
{
|
|
public class UploadResult
|
|
{
|
|
public bool Uploaded { get; set; }
|
|
public string? FileName { get; set; }
|
|
public string? StoredFileName { get; set; }
|
|
public int ErrorCode { get; set; }
|
|
}
|
|
}
|