Files
moadiran/Shared/DTOs/PublicKeyDTO.cs

10 lines
210 B
C#
Raw Normal View History

2024-04-05 01:05:32 +03:30
namespace Shared.DTOs
{
public class PublicKeyDTO
{
public string PublicKey { get; set; }
public string PublicKeyBase64 { get; set; }
public string type { get; set; }
}
}