aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_pages/add-model/add-model.component.ts
blob: 1836af52ea4f07f66bf74f9a29a60ca9e22d47bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { Component, OnInit } from '@angular/core';
import Model from 'src/app/_data/Model';
import { ANNType } from 'src/app/_data/Model';

@Component({
  selector: 'app-add-model',
  templateUrl: './add-model.component.html',
  styleUrls: ['./add-model.component.css']
})
export class AddModelComponent implements OnInit {

  newModel: Model
  ANNType = ANNType;
  Object = Object;

  constructor() {
    this.newModel = new Model();
  }

  ngOnInit(): void {
  }

  addModel() {
    //TODO
  }

}