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
183 B
Swift
15 lines
183 B
Swift
//
|
|
// ProfileUpdate.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2022-05-06.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
struct ProfileUpdate {
|
|
let pubkey: Pubkey
|
|
let profile: Profile
|
|
}
|