10 lines
313 B
TypeScript
10 lines
313 B
TypeScript
import type UserHasNotification from "./UserHasNotification";
|
|
import Resource from "../Resource";
|
|
export default class Notification extends Resource {
|
|
message: string;
|
|
redirection_url: string;
|
|
created_at: Date | null;
|
|
updated_at: Date | null;
|
|
user_has_notifications?: UserHasNotification[];
|
|
}
|