Files
Pulse/Sources/PulseUI/Features/Main/ConsoleConfiguration.swift
T
2021-11-13 11:19:02 -05:00

16 lines
384 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// The MIT License (MIT)
//
// Copyright (c) 20202021 Alexander Grebenyuk (github.com/kean).
import Foundation
public struct ConsoleConfiguration {
public var isStoreSharingEnabled: Bool
public static let `default` = ConsoleConfiguration()
public init(isStoreSharingEnabled: Bool = true) {
self.isStoreSharingEnabled = isStoreSharingEnabled
}
}