Files
2025-10-16 11:26:09 +07:00

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"
)