mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-07 05:42:46 +08:00
11 lines
161 B
Go
11 lines
161 B
Go
package types
|
|
|
|
type Size struct {
|
|
Width int `json:"width"`
|
|
Height int `json:"height"`
|
|
}
|
|
|
|
func (s Size) IsNil() bool {
|
|
return s.Width == 0 && s.Height == 0
|
|
}
|