18 lines
327 B
C#
18 lines
327 B
C#
using Plugin.NFC;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WorkFlowCheck.MAUI.Pages.NFC
|
|
{
|
|
public class NFCData
|
|
|
|
{
|
|
public string DateReceived { get; set; }
|
|
public string SerialNumber { get; set; } = null!;
|
|
|
|
}
|
|
}
|