6 lines
132 B
C#
6 lines
132 B
C#
namespace Aegis.Domain;
|
|
|
|
public readonly record struct DataStoreId(string Value)
|
|
{
|
|
public override string ToString() => Value;
|
|
} |