|
namespace UtopiaCanteenSystem.Services;
|
|
|
|
/// <summary>
|
|
/// Result of processing a scan, including an optional cooldown (in seconds) when blocked.
|
|
/// </summary>
|
|
public readonly record struct ScanResult(
|
|
bool Success,
|
|
string Message,
|
|
int CooldownSecondsRemaining);
|
|
|