conversations-classic-ios/ConversationsClassic/AppCore/State/SharingState.swift
2024-07-10 16:13:47 +02:00

11 lines
152 B
Swift

struct SharingState: Stateable {
var sharingShown: Bool
}
// MARK: Init
extension SharingState {
init() {
sharingShown = false
}
}