Mike Phares 1a152fafe0 DEP08SIASM - v2.43.0 - Running but
with nuget_System.Text.Json v5.0.1
2022-06-28 11:57:49 -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);
}