Files
aaaa/src/server/profiles/content/Reputation.ts
2025-09-03 14:32:02 -04:00

34 lines
868 B
TypeScript

import ProfileContentManager from "./base.ts";
interface ProfileReputation {
AccountId: number,
Noteriety: number,
CheerGeneral: number,
CheerHelpful: number,
CheerGreatHost: number,
CheerSportsman: number,
CheerCreative: number,
CheerCredit: number,
SubscriberCount: number,
SubscribedCount: number,
}
export class ProfileReputationManager extends ProfileContentManager {
// deno-lint-ignore require-await
async export(): Promise<ProfileReputation> {
return {
AccountId: this.profile.getId(),
Noteriety: 0.0,
CheerGeneral: 0.0,
CheerHelpful: 0.0,
CheerGreatHost: 0.0,
CheerSportsman: 0.0,
CheerCreative: 0.0,
CheerCredit: 0.0,
SubscribedCount: 0,
SubscriberCount: 0
}
}
}