10 lines
163 B
Go
10 lines
163 B
Go
|
package entities
|
||
|
|
||
|
type CardStorageLocation struct {
|
||
|
Id int
|
||
|
CardPrintingId string
|
||
|
StorageBox string
|
||
|
Source string
|
||
|
Position int
|
||
|
}
|