6 lines
136 B
C#
6 lines
136 B
C#
|
|
namespace IdentityShroud.Core.Security;
|
||
|
|
|
||
|
|
public record struct DekId(Guid Id)
|
||
|
|
{
|
||
|
|
public static DekId NewId() => new(Guid.NewGuid());
|
||
|
|
}
|