12 lines
244 B
C#
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; }
|
|
}
|