2019-12-17 16:39:02 +09:00
|
|
|
import { NotificationType } from '../types/notification.type';
|
|
|
|
|
2019-11-09 17:29:02 +09:00
|
|
|
export interface NotificationRequest {
|
2019-12-17 16:39:02 +09:00
|
|
|
type: NotificationType;
|
|
|
|
seq: string;
|
2019-11-09 17:29:02 +09:00
|
|
|
title: string;
|
|
|
|
contents: string;
|
|
|
|
image: string;
|
|
|
|
useSound: boolean;
|
|
|
|
interval?: number;
|
|
|
|
}
|