Files
ios/BitwardenShared/Core/Tools/Models/API/SendFileModel.swift
2024-01-09 11:19:41 -06:00

18 lines
359 B
Swift

/// API model for a file send.
///
struct SendFileModel: Codable, Equatable {
// MARK: Properties
/// The filename of the file to send.
let fileName: String
/// The send file identifier.
let id: String?
/// The size of the file.
let size: String?
/// The human-readable string of the file size.
let sizeName: String?
}