mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-06-13 14:38:43 +00:00
15 lines
379 B
C#
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();
|
|
|
|
}
|
|
}
|