namespace UtopiaCanteenSystem.Models; /// /// Per-scan context from a scanner PC (API client). Used on the central server instead of server-local config for site/device/IP. /// public sealed class RfidScanClientContext { public string DeviceId { get; init; } = string.Empty; public string SiteId { get; init; } = string.Empty; public string IpAddress { get; init; } = string.Empty; }