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