summaryrefslogtreecommitdiff
path: root/front/src/Authentication/Models.ts
blob: 1918b85ef1b0138383a2b513a2d31597c2b70464 (plain)
1
2
3
4
export type User = {
    Username: string,
    Role: "user" | "editor"
}