mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-22 16:03:00 +08:00
16 lines
No EOL
353 B
TypeScript
16 lines
No EOL
353 B
TypeScript
import { IGroup, IUser } from "./auth";
|
|
import { IDepartment } from "./setup";
|
|
|
|
export interface INotice {
|
|
uid: number;
|
|
title: string;
|
|
body: string;
|
|
departments: IDepartment[];
|
|
groups: IGroup[];
|
|
users: IUser[];
|
|
expiry: Date;
|
|
expired: boolean;
|
|
dayToExpiration: number;
|
|
status: string;
|
|
createdByUid: number;
|
|
} |