Mike Phares 7d61122159 MET08DDUPSP1TBI - v2.43.0 - Using EDA
Multiple Storage Paths and delete old way
2022-06-07 11:47:02 -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);
}