Adds the new Enum Status of a Dataset, "Canceled".

This commit is contained in:
gkolokythas 2019-06-20 18:08:51 +03:00
parent a0f3192541
commit e76eb24dbd
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
export enum DatasetStatus {
Draft = 0,
Finalized = 1,
Canceled = 2,
Deleted = 99
}
}