1
This commit is contained in:
15
Core/Progress/Progress.cs
Normal file
15
Core/Progress/Progress.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
namespace BITKit
|
||||
{
|
||||
public interface IProgress
|
||||
{
|
||||
float Progress { get; }
|
||||
string Message { get; }
|
||||
}
|
||||
public record ProgressInfo : IProgress
|
||||
{
|
||||
public string Message { get; set; }
|
||||
public float Progress { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user