All checks were successful
Dotnet build and test / build (pull_request) Successful in 10m16s
20 lines
378 B
C#
20 lines
378 B
C#
#nullable enable annotations
|
|
|
|
namespace Yavsc.Abstract.Helpers
|
|
{
|
|
public enum ErrorCode {
|
|
NotFound,
|
|
InternalError,
|
|
DestExists,
|
|
InvalidRequest
|
|
}
|
|
|
|
public class FsOperationInfo {
|
|
|
|
public bool Done { get; set; } = false;
|
|
|
|
public ErrorCode ErrorCode { get; set; }
|
|
public string? ErrorMessage { get; set; }
|
|
|
|
}
|
|
}
|