18 lines
450 B
Swift
18 lines
450 B
Swift
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import CoreData
|
|
|
|
extension URLPreviewUserDataMO {
|
|
convenience init(context: NSManagedObjectContext, eventID: String, roomID: String, dismissed: Bool) {
|
|
self.init(context: context)
|
|
self.eventID = eventID
|
|
self.roomID = roomID
|
|
self.dismissed = dismissed
|
|
}
|
|
}
|