using System;
using System.Collections.Generic;
using System.Text;
namespace CryptoExchange.Net.Objects;
///
/// Void result
///
public readonly struct Unit
{
///
/// Void value
///
public static readonly Unit Value = default;
///
/// Type
///
public static Type Type { get; } = typeof(Unit);
}