9 lines
156 B
TypeScript
9 lines
156 B
TypeScript
|
export interface NotificationRequest {
|
||
|
roomSeq: string;
|
||
|
title: string;
|
||
|
contents: string;
|
||
|
image: string;
|
||
|
useSound: boolean;
|
||
|
interval?: number;
|
||
|
}
|