15 lines
370 B
Go
15 lines
370 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
|
||
|
"encoding/json"
|
||
|
"git.loafle.net/overflow/overflow_commons_go/modules/timestamp/model"
|
||
|
|
||
|
)
|
||
|
|
||
|
type Target struct {
|
||
|
Id json.Number `json:"id,Number,omitempty"`
|
||
|
CreateDate timestamp.Timestamp `json:"createDate,omitempty"`
|
||
|
DisplayName string `json:"displayName,omitempty"`
|
||
|
Description string `json:"description,omitempty"`
|
||
|
}
|