12 lines
171 B
Go
12 lines
171 B
Go
package pipelines
|
|
|
|
import "time"
|
|
|
|
type Pipeline struct {
|
|
ID string
|
|
TenantID string
|
|
Name string
|
|
IsDefault bool
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|