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