8 lines
179 B
C#
8 lines
179 B
C#
namespace FrostFS.SDK;
|
|
|
|
public class FrostFsAttributePair(string key, string value)
|
|
{
|
|
public string Key { get; set; } = key;
|
|
|
|
public string Value { get; set; } = value;
|
|
}
|