github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/model/systems_sync.go (about)

     1  package model
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  // SystemSynchronizationTimestamp represents the last synchronization time of a system
     8  type SystemSynchronizationTimestamp struct {
     9  	ID                string
    10  	TenantID          string
    11  	ProductID         string
    12  	LastSyncTimestamp time.Time
    13  }