frostfs-sdk-csharp/src/FrostFS.SDK.ClientV2/Models/Object/FrostFsAttributePair.cs
Pavel Gross d1271df207 [#13] Client: Use code analyzers
Signed-off-by: Pavel Gross <p.gross@yadro.com>
2024-09-23 19:25:59 +03:00

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;
}