9 lines
103 B
Swift
9 lines
103 B
Swift
|
|
import Foundation
|
||
|
|
|
||
|
|
public struct Field {
|
||
|
|
|
||
|
|
public let key: [UInt8]
|
||
|
|
public let value: [UInt8]
|
||
|
|
|
||
|
|
}
|