more constructors for UniquieID

This commit is contained in:
2023-08-02 08:09:12 +02:00
parent 67be15157c
commit 9100057ae2
2 changed files with 31 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Pilz.Cryptography
{
public enum UniquieIDGenerationMode
{
None,
GenerateOnGet,
GenerateOnInit
}
}