[#60] Wallet tools in SDK
Signed-off-by: Pavel Gross <p.gross@yadro.com>
This commit is contained in:
parent
42f4507638
commit
5f451c8818
14 changed files with 296 additions and 1 deletions
12
src/FrostFS.SDK.Client/Wallets/Parameter.cs
Normal file
12
src/FrostFS.SDK.Client/Wallets/Parameter.cs
Normal 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; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue