People tab working

This commit is contained in:
2025-03-08 13:26:39 -05:00
parent 0dfb971bc2
commit b763a1c7bd
22 changed files with 1050 additions and 22 deletions

6
src/interface/Person.ts Normal file
View File

@@ -0,0 +1,6 @@
export interface Person {
personId?: string;
raidGroupId: string;
personName: string;
discordId?: string;
}