blob: c674add1b72a604d27d23f6c72aed11ec74be113 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { UserNotificationSettingModel } from '@server/models/account/user-notification-setting'
export type MNotificationSetting = Omit<UserNotificationSettingModel, 'User'>
// ############################################################################
// Format for API or AP object
export type MNotificationSettingFormattable = MNotificationSetting
|