2024-09-19 00:41:40 +01:00
|
|
|
import Party from "../../entities/Party";
|
|
|
|
import User from "../../entities/User";
|
2024-10-08 09:41:47 +01:00
|
|
|
import UserBadge from "../../entities/UserBadge";
|
2024-09-19 00:41:40 +01:00
|
|
|
import UserParty from "../../entities/UserParty";
|
|
|
|
|
|
|
|
export default interface HomeViewModel {
|
|
|
|
user: User,
|
|
|
|
parties: Array<Party>,
|
2024-10-08 09:41:47 +01:00
|
|
|
activeUserParty: UserParty | null,
|
|
|
|
unlockedBadges: Array<UserBadge>
|
2024-09-19 00:41:40 +01:00
|
|
|
}
|