1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2024-12-13 17:17:35 +01:00
mastodon-app-ufficiale-ipho.../MastodonSDK/Sources/CoreDataStack/Entity/Transient/MastodonField.swift
2022-01-28 12:09:28 +08:00

26 lines
509 B
Swift

//
// MastodonField.swift
// CoreDataStack
//
// Created by Cirno MainasuK on 2021-9-18.
// Copyright © 2021 Twidere. All rights reserved.
//
import Foundation
public final class MastodonField: NSObject, Codable {
public let name: String
public let value: String
public let verifiedAt: Date?
public init(
name: String,
value: String,
verifiedAt: Date?
) {
self.name = name
self.value = value
self.verifiedAt = verifiedAt
}
}