This is a non-behavioral change in preparation for the actual switchover from Strings to Ids. The purpose of this kit is to reduce the size of the switchover commit which is going to be very large.
15 lines
184 B
Swift
15 lines
184 B
Swift
//
|
|
// Liked.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2022-04-30.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Counted {
|
|
let event: NostrEvent
|
|
let id: NoteId
|
|
let total: Int
|
|
}
|