1
0
mirror of synced 2025-01-24 23:13:45 +01:00
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; }
}