metatext/Mastodon/Sources/Mastodon/Entities/Mention.swift
2021-03-28 23:04:14 -07:00

11 lines
240 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct Mention: Codable, Hashable {
public let url: UnicodeURL
public let username: String
public let acct: String
public let id: Account.Id
}