30 lines
618 B
Swift
30 lines
618 B
Swift
//
|
|
// Notification+Property.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK on 2022-1-21.
|
|
//
|
|
|
|
import Foundation
|
|
import CoreDataStack
|
|
import MastodonSDK
|
|
import class CoreDataStack.Notification
|
|
|
|
extension Notification.Property {
|
|
public init(
|
|
entity: Mastodon.Entity.Notification,
|
|
domain: String,
|
|
userID: MastodonUser.ID,
|
|
networkDate: Date
|
|
) {
|
|
self.init(
|
|
id: entity.id,
|
|
typeRaw: entity.type.rawValue,
|
|
domain: domain,
|
|
userID: userID,
|
|
createAt: entity.createdAt,
|
|
updatedAt: networkDate
|
|
)
|
|
}
|
|
}
|