EDBGS/EliteBGS/LogGenerator/LogFormatter.cs

7 lines
165 B
C#
Raw Normal View History

2022-11-24 19:38:19 +01:00
namespace EliteBGS.LogGenerator;
public interface LogFormatter {
string GenerateLog(Objective objective);
string GenerateSummary(Objective objective);
2022-11-24 19:38:19 +01:00
}