9 lines
164 B
C#
9 lines
164 B
C#
namespace Shared.DTOs
|
|
{
|
|
public class PublicKeyDTO
|
|
{
|
|
public string PublicKeyBase64 { get; set; }
|
|
public string type { get; set; }
|
|
}
|
|
}
|