mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
14 lines
289 B
Swift
14 lines
289 B
Swift
import Foundation
|
|
|
|
public struct SubmitRequest: Equatable {
|
|
public let url: URL
|
|
public let method: String
|
|
public let headers: [String: String]
|
|
|
|
init(url: URL, method: String, headers: [String: String]) {
|
|
self.url = url
|
|
self.method = method
|
|
self.headers = headers
|
|
}
|
|
}
|