metatext-app-ios-iphone-ipad/Mastodon/Sources/Mastodon/Entities/Mention.swift

11 lines
233 B
Swift
Raw Normal View History

2020-08-31 01:33:11 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct Mention: Codable, Hashable {
public let url: URL
public let username: String
public let acct: String
2020-10-06 00:50:05 +02:00
public let id: Account.Id
2020-08-31 01:33:11 +02:00
}