13 lines
293 B
Go
13 lines
293 B
Go
package scenes
|
|
|
|
import "gitea.maximumdirect.net/eric/notarius/internal/modules/dnd/shared"
|
|
|
|
type chunkResponse struct {
|
|
Scenes []sceneResponse `json:"scenes"`
|
|
}
|
|
|
|
type sceneResponse struct {
|
|
StartUnitID shared.UnitRef `json:"start_unit_id"`
|
|
EndUnitID shared.UnitRef `json:"end_unit_id"`
|
|
}
|