2023-01-24 08:45:13 -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);
}