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
255 B

  1. import { Seq2seqLabel } from '~/domain/models/tasks/seq2seq'
  2. export class Seq2seqDTO {
  3. id: number;
  4. text: string;
  5. user: number;
  6. constructor(item: Seq2seqLabel) {
  7. this.id = item.id;
  8. this.text = item.text;
  9. this.user = item.user;
  10. }
  11. }