mirror of
https://github.com/outline/outline.git
synced 2026-02-07 11:28:39 -06:00
10 lines
163 B
JavaScript
10 lines
163 B
JavaScript
// @flow
|
|
import BaseModel from "./BaseModel";
|
|
|
|
class NotificationSetting extends BaseModel {
|
|
id: string;
|
|
event: string;
|
|
}
|
|
|
|
export default NotificationSetting;
|