mirror of
https://github.com/Receipt-Wrangler/receipt-wrangler-api.git
synced 2026-01-20 09:59:55 -06:00
10 lines
242 B
Go
10 lines
242 B
Go
package commands
|
|
|
|
import "receipt-wrangler/api/internal/models"
|
|
|
|
type UpsertTaskQueueConfigurationCommand struct {
|
|
Id *uint `json:"id"`
|
|
Name models.QueueName `json:"name"`
|
|
Priority int `json:"priority"`
|
|
}
|