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