mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
17 lines
326 B
C#
17 lines
326 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; }
|
|
|
|
}
|
|
}
|