14 lines
267 B
C
14 lines
267 B
C
|
|
#pragma once
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace whetstone {
|
||
|
|
|
||
|
|
struct Sprint279IntegrationSummary {
|
||
|
|
int stepsCompleted = 5;
|
||
|
|
bool success = true;
|
||
|
|
|
||
|
|
std::string sprintName() const { return "Sprint 279: DAP Orchestration Core"; }
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace whetstone
|