mirror of
https://github.com/YouHaveTrouble/GuildMaster.git
synced 2026-05-12 06:26:59 +00:00
13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
export default class AdventurerIdentity {
|
|
|
|
id: string;
|
|
name: string;
|
|
portrait: string;
|
|
|
|
constructor(id: string, name: string, portrait: string) {
|
|
this.id = id;
|
|
this.name = name;
|
|
this.portrait = portrait;
|
|
}
|
|
|
|
} |