20 lines
256 B
Swift
20 lines
256 B
Swift
//
|
|
// Liked.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2022-04-30.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Counted {
|
|
let event: NostrEvent
|
|
let id: String
|
|
let total: Int
|
|
}
|
|
|
|
struct LikeRefs {
|
|
let thread_id: String?
|
|
let like_id: String
|
|
}
|