IdentityShroud/IdentityShroud.Core/Security/DekId.cs

8 lines
205 B
C#
Raw Normal View History

namespace IdentityShroud.Core.Security;
public readonly record struct DekId(Guid Id)
{
public static DekId NewId() => new(Guid.NewGuid());
public override string ToString() => Id.ToString("N");
}