using System; using System.Collections.Generic; using System.Text; namespace Esiur.Tests.RPC.Client { public class TestResults { public Dictionary Docs { get; set; } = new(); public Dictionary Bytes { get; set; } = new(); public Dictionary Ints { get; set; } = new(); } }