11 lines
No EOL
192 B
C#
11 lines
No EOL
192 B
C#
namespace FrostFS.SDK.ModelsV2;
|
|
|
|
public class ContainerId(string id)
|
|
{
|
|
public string Value { get; set; } = id;
|
|
|
|
public override string ToString()
|
|
{
|
|
return Value;
|
|
}
|
|
} |