11 lines
309 B
TypeScript
11 lines
309 B
TypeScript
import Resource from "../Resource";
|
|
import UserNotification from "./UserNotification";
|
|
export default class Notification extends Resource {
|
|
uid?: string;
|
|
message: string;
|
|
redirection_url: string;
|
|
created_at: Date | null;
|
|
updated_at: Date | null;
|
|
userNotification?: UserNotification;
|
|
}
|