frostfs-sdk-csharp/src/FrostFS.SDK.ModelsV2/ContainerId.cs
Pavel Gross 545e647d7b [#4] infrastructure and sample Client Cut
Signed-off-by: Pavel Gross <p.gross@yadro.com>
2024-06-10 11:31:36 +03:00

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