Rename project, namespaces and class names Signed-off-by: Pavel Gross <p.gross@yadro.com>
14 lines
253 B
C#
14 lines
253 B
C#
using System;
|
|
|
|
namespace FrostFS.SDK.Client;
|
|
|
|
// RequestInfo groups info about pool request.
|
|
struct RequestInfo
|
|
{
|
|
public string Address { get; set; }
|
|
|
|
public MethodIndex MethodIndex { get; set; }
|
|
|
|
public TimeSpan Elapsed { get; set; }
|
|
}
|
|
|