10 lines
269 B
C#
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; }
|
|
}
|