19 lines
361 B
Swift
19 lines
361 B
Swift
|
//
|
||
|
// ParsedAttachment.swift
|
||
|
// RSParser
|
||
|
//
|
||
|
// Created by Brent Simmons on 6/20/17.
|
||
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public struct ParsedAttachment {
|
||
|
|
||
|
public let url: String?
|
||
|
public let mimeType: String?
|
||
|
public let title: String?
|
||
|
public let sizeInBytes: Int?
|
||
|
public let durationInSeconds: Int?
|
||
|
}
|