You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
300 B

  1. import { TextClassificationItem } from '~/domain/models/tasks/textClassification'
  2. export class TextClassificationDTO {
  3. id: number;
  4. label: number;
  5. user: number;
  6. constructor(item: TextClassificationItem) {
  7. this.id = item.id;
  8. this.label = item.label;
  9. this.user = item.user;
  10. }
  11. }