blob: bf3781af46b925c6d690e58e80ad90ea464b9f17 [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2017-2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
export enum StatusEn {
open = 1,
inWork = 2,
done = 3,
closed = 4
}
export enum ErrorType {
create = 1,
update = 2,
delete = 3,
retrieve = 4,
authentication = 5
}
export enum BannerMessageStatusEn {
warning = 1,
success = 2,
error = 3,
info = 4
}