mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
29 lines
431 B
C#
29 lines
431 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace QRBee.Core.Data
|
|
{
|
|
public record RegistrationResponse
|
|
{
|
|
public string ClientId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string ClientCertificate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string APIServerCertificate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
}
|
|
}
|