Hub-Api/models/commands/store_commands.go

27 lines
598 B
Go
Raw Normal View History

2024-05-27 23:06:25 +03:30
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
}