16 lines
333 B
Go
16 lines
333 B
Go
package npcs
|
|
|
|
type extractionResponse struct {
|
|
NPCs []npcResponse `json:"npcs"`
|
|
}
|
|
|
|
type npcResponse struct {
|
|
Name string `json:"name"`
|
|
SourceRefs []npcSourceRefResponse `json:"source_refs"`
|
|
}
|
|
|
|
type npcSourceRefResponse struct {
|
|
StartUnitID int `json:"start_unit_id"`
|
|
EndUnitID int `json:"end_unit_id"`
|
|
}
|