16 lines
184 B
Swift
16 lines
184 B
Swift
//
|
|
// TextApp.swift
|
|
// RippleChat
|
|
//
|
|
// Created by Sebastian Lenzlinger on 10.07.23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct TextApp: Codable {
|
|
|
|
let t: Date
|
|
let p: String?
|
|
|
|
}
|