using FrostFS.Netmap; namespace FrostFS.SDK; public class FrostFsSelector(string name) { public string Name { get; } = name; public uint Count { get; set; } public int Clause { get; set; } public string? Attribute { get; set; } public string? Filter { get; set; } internal Selector GetMessage() { return new Selector() { Name = Name, Clause = (Clause)Clause, Count = Count, Filter = Filter ?? string.Empty, Attribute = Attribute ?? string.Empty, }; } }