1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-01-23 18:34:02 +02:00
focalboard/mac/Focalboard/Globals.swift

15 lines
419 B
Swift
Raw Normal View History

2021-04-12 14:02:22 -07:00
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import Foundation
class Globals {
2022-04-28 14:41:38 -06:00
static let ProductVersion = 01700
2021-11-22 16:15:03 -08:00
static let WhatsNewVersion = 01100
2021-04-12 14:02:22 -07:00
static var currentWhatsNewVersion: Int {
get { return UserDefaults.standard.integer(forKey: "whatsNewVersion") }
set { UserDefaults.standard.setValue(newValue, forKey: "whatsNewVersion") }
}
}