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