mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-10 04:20:26 +08:00
11 lines
228 B
Go
11 lines
228 B
Go
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package huaweidns
|
||
|
|
|
||
|
|
type CustomLinesResponse struct {
|
||
|
|
Lines []struct {
|
||
|
|
LineId string `json:"line_id"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
} `json:"lines"`
|
||
|
|
}
|