mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-04 07:53:09 +02:00
9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
namespace Entity {
|
|
export type Report = {
|
|
id: string;
|
|
action_taken: string;
|
|
comment: string;
|
|
account_id: string;
|
|
status_ids: Array<string>;
|
|
};
|
|
}
|