stream.go 189 B

12345678
  1. package model
  2. type Stream struct {
  3. Model
  4. Path string `json:"path"`
  5. Advanced bool `json:"advanced"`
  6. SyncNodeIDs []uint64 `json:"sync_node_ids" gorm:"serializer:json"`
  7. }