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

20 lines
378 B
C#
Raw Normal View History

#nullable enable annotations
2025-02-17 23:56:28 +00:00
namespace Yavsc.Abstract.Helpers
2019-09-04 01:25:36 +01:00
{
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; }
2025-07-16 00:47:50 +01:00
public string? ErrorMessage { get; set; }
2019-09-08 05:17:21 +01:00
2019-09-04 01:25:36 +01:00
}
}