using System;
namespace Orizon;
/// <summary>
/// Represents a request to send over the RPC system.
/// </summary>
public interface IRpcRequest
{
/// <summary>
/// Unique identifier for the request. This is used to match the response to the request.
/// </summary>
Guid CallbackId { get; set; }
}