Infineon.EAF.Runtime v2.59.0

With .gitignore *.traineddata
This commit is contained in:
2025-02-21 13:47:08 -07:00
parent 5368852e1b
commit 5cda494708
170 changed files with 17870 additions and 14 deletions

View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
namespace Adaptation.Ifx.Eaf.EquipmentConnector.File.Component;
public class File
{
#pragma warning disable IDE0060
public File(string filePath) => throw new NotImplementedException();
public File(string filePath, DateTime timeFileFound) => throw new NotImplementedException();
public string Path { get; }
public DateTime TimeFound { get; }
public bool IsErrorFile { get; }
public Dictionary<string, string> ContentParameters { get; }
public File UpdateContentParameters(Dictionary<string, string> contentParameters) => throw new NotImplementedException();
public File UpdateParsingStatus(bool isErrorFile) => throw new NotImplementedException();
}