mirror of
https://github.com/bitwarden/ios.git
synced 2026-04-13 01:13:26 -05:00
12 lines
226 B
Swift
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?
|
|
}
|