1
0
mirror of synced 2024-11-24 06:50:15 +01:00
TaikoLocalServer/SharedProject/Models/QRCodeData.cs
2023-09-18 03:15:04 +08:00

10 lines
238 B
C#

using System.Text.Json.Serialization;
namespace SharedProject.Models;
public class QRCodeData
{
[JsonPropertyName("serial")] public string Serial { get; set; } = null!;
[JsonPropertyName("id")] public uint Id { get; set; }
}