13 lines
253 B
Go
13 lines
253 B
Go
|
package model
|
||
|
|
||
|
// ResponseSegmentInfo ...
|
||
|
type ResponseSegmentInfo struct {
|
||
|
ID string `json:"_id"`
|
||
|
Name string `json:"name"`
|
||
|
}
|
||
|
|
||
|
// ResponseListSegmentInfo ...
|
||
|
type ResponseListSegmentInfo struct {
|
||
|
Segments []ResponseSegmentInfo `json:"segments"`
|
||
|
}
|