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: String
|
|
let profile: Profile
|
|
}
|