using System; using System.Collections.Generic; namespace Library.Ifx.Eaf.EquipmentConnector.File.Component { public class File { 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 ContentParameters { get; } public File UpdateContentParameters(Dictionary contentParameters) { throw new NotImplementedException(); } public File UpdateParsingStatus(bool isErrorFile) { throw new NotImplementedException(); } } }