Utopia-Canteen-System/Services/ScanResult.cs

11 lines
277 B
C#

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);