2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 22:48:42 +00:00
This commit is contained in:
2026-06-08 18:01:02 +03:00
parent 340798a5fa
commit 253a24a466
34 changed files with 237 additions and 1135 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Tests.RPC.Client
{
public class TestResults
{
public Dictionary<string, (long, long)> Docs { get; set; } = new();
public Dictionary<string, (long, long)> Bytes { get; set; } = new();
public Dictionary<string, (long, long)> Ints { get; set; } = new();
}
}