Initial commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace SharepointToolbox.Web.Core.Models;
|
||||
|
||||
public record OperationProgress(int Current, int Total, string Message, bool IsIndeterminate = false)
|
||||
{
|
||||
public static OperationProgress Indeterminate(string message) =>
|
||||
new(0, 0, message, IsIndeterminate: true);
|
||||
}
|
||||
Reference in New Issue
Block a user