6 lines
141 B
TypeScript
6 lines
141 B
TypeScript
export interface IRecategorizationRequest {
|
|
readonly annotationId?: string;
|
|
readonly comment?: string;
|
|
readonly type?: string;
|
|
}
|