2026-02-27 17:57:42 +00:00
|
|
|
namespace IdentityShroud.Core.Security;
|
|
|
|
|
|
2026-03-16 19:15:04 +01:00
|
|
|
public readonly record struct DekId(Guid Id)
|
2026-02-27 17:57:42 +00:00
|
|
|
{
|
|
|
|
|
public static DekId NewId() => new(Guid.NewGuid());
|
2026-03-16 19:15:04 +01:00
|
|
|
|
|
|
|
|
public override string ToString() => Id.ToString("N");
|
2026-02-27 17:57:42 +00:00
|
|
|
}
|