focalboard/mac/Focalboard/Globals.swift
2021-04-12 14:02:22 -07:00

14 lines
419 B
Swift

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import Foundation
class Globals {
static let ProductVersion = 00605
static let WhatsNewVersion = 00605
static var currentWhatsNewVersion: Int {
get { return UserDefaults.standard.integer(forKey: "whatsNewVersion") }
set { UserDefaults.standard.setValue(newValue, forKey: "whatsNewVersion") }
}
}