File size: 319 Bytes
992a8de
 
 
 
 
 
 
 
 
3109a5e
992a8de
1
2
3
4
5
6
7
8
9
10
11
12
import type { ObjectId } from "mongodb";
import type { User } from "./User";
import type { Assistant } from "./Assistant";
import type { Timestamps } from "./Timestamps";

export interface Report extends Timestamps {
	_id: ObjectId;
	createdBy: User["_id"] | string;
	assistantId: Assistant["_id"];
	reason?: string;
}