Mike Phares 5cda494708 Infineon.EAF.Runtime v2.59.0
With .gitignore *.traineddata
2025-02-21 13:47:08 -07:00

11 lines
189 B
C#

using System.Collections.Generic;
namespace Adaptation._Tests.Shared.Log;
public interface IFeedback
{
List<string> Messages { get; }
void Print(string message, int color);
}