Files

19 lines
268 B
TypeScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
enum UserType {
Staff,
Admin,
};
class UserAccount {
name: string;
id: number;
type: UserType;
constructor(name: string, id: number, type: UserType) {
this.name = name;
this.id = id;
this.type = type;
}
}
export { UserAccount, UserType };