Hub-Api/models/commands/store_commands.go

27 lines
598 B
Go

package models
type CreateStoreCommand struct {
Owner_id uint
Name string
Address string
PhoneNumber string
WebAddress string
ApiAddress string
StorageAddress string
AdminPanelAddress string
License_id uint
Modified_by string
}
type UpdateStoreCommand struct {
Owner_id uint
Name string
Address string
PhoneNumber string
WebAddress string
ApiAddress string
StorageAddress string
AdminPanelAddress string
License_id uint
Modified_by string
}