yavsc/src/Yavsc.Abstract/FileSystem/FsOperationInfo.cs

18 lines
338 B
C#
Raw Normal View History

2019-09-04 01:25:36 +01:00
namespace Yavsc.Helpers
{
2019-09-08 05:17:21 +01:00
public enum ErrorCode {
NotFound,
InternalError,
DestExists,
InvalidRequest
}
2019-09-04 01:25:36 +01:00
public class FsOperationInfo {
2019-09-08 05:17:21 +01:00
2019-09-04 01:25:36 +01:00
public bool Done { get; set; } = false;
2019-09-08 05:17:21 +01:00
public ErrorCode ErrorCode { get; set; }
public string ErrorMessage { get; set; }
2019-09-04 01:25:36 +01:00
}
}