HeadParam.kt 307 Bytes
Newer Older
1
package com.yidianling.user.http.request
konghaorui committed
2 3 4 5 6 7 8 9 10 11 12 13 14

import java.io.File

/**
 * author : Zhangwenchao
 * e-mail : zhangwch@yidianling.com
 * time   : 2018/02/10
 */
data class HeadParam internal constructor(val type: String, val value: String, val file: File) {

    constructor(file: File): this("head", "", file)

}