This commit is contained in:
2026-03-15 06:45:51 +00:00
commit 3069164a46
6 changed files with 246 additions and 0 deletions

16
src/KUID.cs Normal file
View File

@@ -0,0 +1,16 @@
using Npgsql;
public class KUID {
public string Text;
// for making a new KUID
public KUID() {
Text = "placeholder";
}
// for making an existing KUID into an object
public KUID(string text) {
Text = text;
}
}