metatext/Mastodon/Sources/Mastodon/Entities/Mention.swift
Justin Mazzocchi 9b59e2fbea
wip
2020-08-30 16:33:32 -07:00

11 lines
229 B
Swift

// 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
public let id: String
}