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