Skip to content

Commit

Permalink
Make things static
Browse files Browse the repository at this point in the history
  • Loading branch information
tmarkovski committed Oct 8, 2021
1 parent 814515c commit 1a0f3ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dotnet/Library/Okapi/DIDKey.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Okapi.Keys
{
public class DIDKey
public static class DIDKey
{
/// <summary>
/// Generate new key
Expand Down
2 changes: 1 addition & 1 deletion dotnet/Library/Okapi/LDProofs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Okapi.Proofs
{
public class LDProofs
public static class LDProofs
{
/// <summary>
/// Generate new key
Expand Down
2 changes: 1 addition & 1 deletion dotnet/Library/Okapi/Oberon.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Okapi.Security
{
public class Oberon
public static class Oberon
{
public static CreateOberonKeyResponse CreateKey(CreateOberonKeyRequest request) =>
Native.Call<CreateOberonKeyRequest, CreateOberonKeyResponse>(request, Native.oberon_create_key);
Expand Down

0 comments on commit 1a0f3ae

Please sign in to comment.