summaryrefslogtreecommitdiff
path: root/front/src/Authentication/Models.ts
diff options
context:
space:
mode:
Diffstat (limited to 'front/src/Authentication/Models.ts')
-rw-r--r--front/src/Authentication/Models.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/front/src/Authentication/Models.ts b/front/src/Authentication/Models.ts
new file mode 100644
index 0000000..1918b85
--- /dev/null
+++ b/front/src/Authentication/Models.ts
@@ -0,0 +1,4 @@
+export type User = {
+ Username: string,
+ Role: "user" | "editor"
+}