frostfs-sdk-csharp/src/FrostFS.SDK.Client/Models/Netmap/FrostFsSelector.cs
Pavel Gross 568bdc67e8 [#29] Client: Add object placement methods
Signed-off-by: Pavel Gross <p.gross@yadro.com>
2024-12-24 17:32:29 +03:00

10 lines
269 B
C#

namespace FrostFS.SDK;
public class FrostFsSelector(string name)
{
public string Name { get; } = name;
public uint Count { get; set; }
public uint Clause { get; set; }
public string? Attribute { get; set; }
public string? Filter { get; set; }
}