mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 00:02:37 +02:00
12 lines
443 B
Go
12 lines
443 B
Go
package epuboptions
|
|
|
|
type Crop struct {
|
|
Enabled bool `yaml:"enabled" json:"enabled"`
|
|
Left int `yaml:"left" json:"left"`
|
|
Up int `yaml:"up" json:"up"`
|
|
Right int `yaml:"right" json:"right"`
|
|
Bottom int `yaml:"bottom" json:"bottom"`
|
|
Limit int `yaml:"limit" json:"limit"`
|
|
SkipIfLimitReached bool `yaml:"skip_if_limit_reached" json:"skip_if_limit_reached"`
|
|
}
|