2021-04-12 23:02:22 +02:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
// See LICENSE.txt for license information.
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
class Globals {
|
2021-07-09 18:36:57 +02:00
|
|
|
static let ProductVersion = 00800
|
|
|
|
static let WhatsNewVersion = 00800
|
2021-04-12 23:02:22 +02:00
|
|
|
|
|
|
|
static var currentWhatsNewVersion: Int {
|
|
|
|
get { return UserDefaults.standard.integer(forKey: "whatsNewVersion") }
|
|
|
|
set { UserDefaults.standard.setValue(newValue, forKey: "whatsNewVersion") }
|
|
|
|
}
|
|
|
|
}
|