Files
Chromacase/front/models/UserSettings.ts
2023-06-17 07:01:23 +01:00

15 lines
270 B
TypeScript

interface UserSettings {
notifications: {
pushNotif: boolean;
emailNotif: boolean;
trainNotif: boolean;
newSongNotif: boolean;
};
weeklyReport: boolean;
leaderBoard: boolean;
showActivity: boolean;
recommendations: boolean;
}
export default UserSettings;