All checks were successful
DCO / DCO (pull_request) Successful in 33s
Signed-off-by: Pavel Gross <p.gross@yando.com>
11 lines
No EOL
183 B
C#
11 lines
No EOL
183 B
C#
namespace FrostFS.SDK;
|
|
|
|
public class ContainerId(string id)
|
|
{
|
|
public string Value { get; set; } = id;
|
|
|
|
public override string ToString()
|
|
{
|
|
return Value;
|
|
}
|
|
} |