Files
ios/BitwardenShared/Core/Tools/Models/API/SendTextModel.swift
2023-09-15 15:52:59 -05:00

12 lines
226 B
Swift

/// API model for a text send.
///
struct SendTextModel: Codable, Equatable {
// MARK: Properties
/// Whether the text is hidden by default.
let hidden: Bool
/// The text in the send.
let text: String?
}