15 lines
250 B
Swift
15 lines
250 B
Swift
|
//
|
||
|
// StaticNotif.swift
|
||
|
// Mixonomer
|
||
|
//
|
||
|
// Created by Andy Pack on 27/11/2022.
|
||
|
// Copyright © 2022 Sarsoo. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
class StaticNotif {
|
||
|
static var token: String?
|
||
|
static var hasDelivered: Bool = false
|
||
|
}
|