Files
moadiran/Shared/DTOs/PublicKeyDTO.cs

9 lines
164 B
C#
Raw Normal View History

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