Swiftgram/submodules/Postbox/Sources/MessageHistoryViewEntryAttributes.swift
2019-11-01 17:11:12 +04:00

10 lines
221 B
Swift

import Foundation
public struct MutableMessageHistoryEntryAttributes: Equatable {
public var authorIsContact: Bool
public init(authorIsContact: Bool) {
self.authorIsContact = authorIsContact
}
}