implements the file moves ui

This commit is contained in:
2019-09-08 05:17:21 +01:00
parent a727ee1f49
commit 9e3f0ecd0a
7 changed files with 353 additions and 174 deletions

View File

@ -1,7 +1,18 @@
namespace Yavsc.Helpers
{
public enum ErrorCode {
NotFound,
InternalError,
DestExists,
InvalidRequest
}
public class FsOperationInfo {
public bool Done { get; set; } = false;
public string Error { get; set; }
public ErrorCode ErrorCode { get; set; }
public string ErrorMessage { get; set; }
}
}