10 lines
275 B
TypeScript
10 lines
275 B
TypeScript
import IUserHasNotification from "./IUserHasNotificationAdmin";
|
|
export default class INotificationAdmin {
|
|
uuid: string;
|
|
message: string;
|
|
redirection_url: string;
|
|
created_at?: Date;
|
|
updated_at?: Date;
|
|
user_has_notifications?: IUserHasNotification[];
|
|
}
|