10 lines
233 B
Go
10 lines
233 B
Go
package web
|
|
|
|
type BarcodeRequest struct {
|
|
BarcodeType string `json:"barcode_type"`
|
|
Width int `json:"width"`
|
|
Height int `json:"height"`
|
|
ECCLevel int `json:"ecc_level"`
|
|
Content string `json:"content"`
|
|
}
|