Rename project, namespaces and class names Signed-off-by: Pavel Gross <p.gross@yadro.com>
10 lines
No EOL
321 B
C#
10 lines
No EOL
321 B
C#
using System.Collections.Generic;
|
|
|
|
namespace FrostFS.SDK;
|
|
|
|
public class FrostFsNetmapSnapshot(ulong epoch, IReadOnlyList<FrostFsNodeInfo> nodeInfoCollection)
|
|
{
|
|
public ulong Epoch { get; private set; } = epoch;
|
|
|
|
public IReadOnlyList<FrostFsNodeInfo> NodeInfoCollection { get; private set; } = nodeInfoCollection;
|
|
} |