Files
view-by-distance-mklink-con…/Shared/Models/Stateless/Methods/IDlibDotNet.cs
Mike Phares 30d8a270f9 Removed Obsolete A_Property Methods
Changed GetDimensions to handle a stream at the end and one exit

Switched to using Action? over IDlibDotNet for Tick method

Switched to using AsReadOnly over new()

Moved Meta Base to Shared
2025-06-30 16:42:34 -07:00

12 lines
346 B
C#

namespace View_by_Distance.Shared.Models.Stateless.Methods;
public interface IDlibDotNet
{
void Tick();
long Ticks { get; }
(string, string) GetResultsFullGroupDirectories();
void ConstructProgressBar(int maxTicks, string message);
(string, string, string, string) GetResultsFullGroupDirectories(string outputResolution);
}