metatext/Mastodon/Sources/Mastodon/Entities/Mention.swift

11 lines
240 B
Swift
Raw Normal View History

2020-08-30 23:33:11 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct Mention: Codable, Hashable {
2021-03-29 06:04:14 +00:00
public let url: UnicodeURL
2020-08-30 23:33:11 +00:00
public let username: String
public let acct: String
2020-10-05 22:50:05 +00:00
public let id: Account.Id
2020-08-30 23:33:11 +00:00
}