EDBGS/Avalonia.EliteBGS/LogGenerator/LogFormatter.cs

7 lines
165 B
C#

namespace EliteBGS.LogGenerator;
public interface LogFormatter {
string GenerateLog(Objective objective);
string GenerateSummary(Objective objective);
}