mirror of
https://github.com/outline/outline.git
synced 2026-03-16 01:21:47 -05: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;
|