Utopia-Canteen-System/UtopiaCanteen.Shared/ScanRequest.cs

10 lines
279 B
C#

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