|
namespace UtopiaCanteen.Shared;
|
|
|
|
public sealed class ScanRequest
|
|
{
|
|
public string CardId { get; set; } = string.Empty;
|
|
public string DeviceId { get; set; } = string.Empty;
|
|
public string SiteId { get; set; } = string.Empty;
|
|
public string? IpAddress { get; set; }
|
|
}
|