12 lines
418 B
C#
12 lines
418 B
C#
namespace UtopiaCanteenSystem.Models;
|
|
|
|
/// <summary>
|
|
/// Per-scan context from a scanner PC (API client). Used on the central server instead of server-local config for site/device/IP.
|
|
/// </summary>
|
|
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;
|
|
}
|