8 lines
227 B
C#
8 lines
227 B
C#
namespace LightlessSyncServer.Models;
|
|
|
|
public class PairingPayload
|
|
{
|
|
public string UID { get; set; } = string.Empty;
|
|
public string HashedCid { get; set; } = string.Empty;
|
|
public DateTime Timestamp { get; set; }
|
|
} |