using System;
namespace Orizon;
/// <summary>
/// Represents a response received from the RPC system.
/// </summary>
public interface IRpcResponse
{
/// <summary>
/// Represents a response received from the RPC system.
/// </summary>
Guid CallbackId { get; set; }
}