Files
moadiran/Shared/DTOs/PublicKeyDTO.cs
mmrbnjd 4eb04aef14 ...
2024-04-05 01:05:32 +03:30

10 lines
210 B
C#

namespace Shared.DTOs
{
public class PublicKeyDTO
{
public string PublicKey { get; set; }
public string PublicKeyBase64 { get; set; }
public string type { get; set; }
}
}