webapp/src/ts/protocol/User.ts

11 lines
239 B
TypeScript

import { Rank } from "./Permissions.js";
export class User {
username : string;
rank : Rank
constructor(username : string, rank : Rank = Rank.Unregistered) {
this.username = username;
this.rank = rank;
}
}