[#60] Wallet tools in SDK
Some checks failed
DCO / DCO (pull_request) Successful in 21s
lint-build / dotnet8.0 (pull_request) Successful in 43s
lint-build / dotnet8.0 (push) Has been cancelled

Signed-off-by: Pavel Gross <p.gross@yadro.com>
This commit is contained in:
Pavel Gross 2025-04-11 15:52:31 +03:00
parent 42f4507638
commit 5f451c8818
14 changed files with 296 additions and 1 deletions

View file

@ -0,0 +1,12 @@
using System.Text.Json.Serialization;
namespace FrostFS.SDK.Client.Wallets;
public class Parameter
{
[JsonPropertyName("name")]
public string? Name { get; set; }
[JsonPropertyName("type")]
public string? Type { get; set; }
}