OTRS-Watch/OTRS-Watch/Constants.swift
2016-12-19 09:33:33 +01:00

49 lines
1.0 KiB
Swift

//
// Constants.swift
// OTRS-Watch
//
// Created by Gerrit Linnemann on 06.12.16.
// Copyright © 2016 Adawim UG (haftungsbeschränkt). All rights reserved.
//
import Foundation
struct Constants {
struct SERVICE {
static let URL = "http://saeweb01.sae.intra/web/ws/v1/user/permission/"
}
struct USER_SETTINGS {
struct CREDENTIALS {
static let USER = "user::setting::login"
static let PASSWORD = "user::setting::password"
}
struct OTRS {
static let BASE_URL = "user::setting::otrs::url::base"
static let QUEUE = "user::setting::otrs::queue"
}
}
struct NOTIFICATION {
struct TICKET {
struct LIST {
static let UPDATED = "nf::ticket::list::updated"
}
static let IN = "nf::ticket::in"
}
}
struct TABS {
struct TAB {
static let OTRS = 0
static let SETTINGS = 1
}
}
}