focalboard/mac/Focalboard/Globals.swift
2022-03-02 15:08:40 -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 = 01600
static let WhatsNewVersion = 01100
static var currentWhatsNewVersion: Int {
get { return UserDefaults.standard.integer(forKey: "whatsNewVersion") }
set { UserDefaults.standard.setValue(newValue, forKey: "whatsNewVersion") }
}
}