14 lines
264 B
C
14 lines
264 B
C
|
|
#pragma once
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace whetstone {
|
||
|
|
|
||
|
|
struct Sprint278IntegrationSummary {
|
||
|
|
int stepsCompleted = 5;
|
||
|
|
bool success = true;
|
||
|
|
|
||
|
|
std::string sprintName() const { return "Sprint 278: LSP Proxy Hardening"; }
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace whetstone
|