frostfs-sdk-csharp/src/FrostFS.SDK.Client/Wallets/Parameter.cs
Pavel Gross 5f451c8818
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
[#60] Wallet tools in SDK
Signed-off-by: Pavel Gross <p.gross@yadro.com>
2025-04-11 16:07:20 +03:00

12 lines
244 B
C#

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; }
}