Swiftgram/Postbox/PeerGroup.swift
2019-03-08 10:18:29 +00:00

18 lines
356 B
Swift

import Foundation
public struct PeerGroupId: Hashable, Equatable, RawRepresentable {
public var rawValue: Int32
public init(rawValue: Int32) {
self.rawValue = rawValue
}
}
struct WrappedPeerGroupId: Hashable, Equatable {
let groupId: PeerGroupId?
init(groupId: PeerGroupId?) {
self.groupId = groupId
}
}