7 lines
100 B
Go
7 lines
100 B
Go
|
package types
|
||
|
|
||
|
type ActivePeriod struct {
|
||
|
Begin string `json:"begin"`
|
||
|
End string `json:"end"`
|
||
|
}
|