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