All checks were successful
DCO / DCO (pull_request) Successful in 33s
Signed-off-by: Pavel Gross <p.gross@yando.com>
8 lines
175 B
C#
8 lines
175 B
C#
namespace FrostFS.SDK;
|
|
|
|
public class FrostFsAttribute(string key, string value)
|
|
{
|
|
public string Key { get; set; } = key;
|
|
|
|
public string Value { get; set; } = value;
|
|
}
|