restaurant-admin-bff/src/Restaurant.Admin.Bff.Contracts/Responses/SetServiceWindowResponse.cs
José René White Enciso 5b4c23b6e9 feat(restaurant-admin): add config edge flow
Why: baseline pending admin config edge handlers and runtime assets before security wave.

What: add set service window contracts/handlers, service adapter updates, and docs/docker assets.

Rule: keep technical intent and align repository workflow.
2026-03-08 15:00:08 -06:00

7 lines
161 B
C#

namespace Restaurant.Admin.Bff.Contracts.Responses;
public sealed record SetServiceWindowResponse(
string ContextId,
bool Applied,
string Message);