2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 14:38:43 +00:00
Files
esiur-dotnet/Tests/RPC/Client/TestResults.cs
T
2026-06-08 18:01:02 +03:00

15 lines
379 B
C#

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();
}
}