16 lines
311 B
Go
16 lines
311 B
Go
package monitoring
|
|
|
|
type ReadListDto struct {
|
|
ReferenceType ReferenceType `json:"-"`
|
|
PathValue1 string `json:"-"`
|
|
PathValue2 string `json:"-"`
|
|
PathValue3 string `json:"-"`
|
|
}
|
|
|
|
type ReferenceType string
|
|
|
|
const (
|
|
RTVisit ReferenceType = "visit"
|
|
RTHist ReferenceType = "hist"
|
|
)
|