16 lines
326 B
C#
16 lines
326 B
C#
using Shared.Metrology;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text.Json;
|
|
|
|
namespace Shared
|
|
{
|
|
public interface IProcessData
|
|
{
|
|
|
|
Tuple<string, JsonElement?, List<FileInfo>> GetResults(ILogic logic, ConfigDataBase configData, List<FileInfo> fileInfoCollection);
|
|
|
|
}
|
|
|
|
} |