8 lines
139 B
Go
8 lines
139 B
Go
|
package main
|
||
|
|
||
|
type ShopConfigItem struct {
|
||
|
MCCCodes []int
|
||
|
Names []string
|
||
|
TransactionDescription string
|
||
|
}
|