mirror of
https://github.com/strongdm/comply
synced 2024-11-05 15:35:25 +00:00
17 lines
332 B
Go
17 lines
332 B
Go
|
package model
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Procedure struct {
|
||
|
Name string `yaml:"name"`
|
||
|
ID string `yaml:"id"`
|
||
|
Cron string `yaml:"cron"`
|
||
|
|
||
|
Revisions []Revision `yaml:"majorRevisions"`
|
||
|
Satisfies Satisfaction `yaml:"satisfies"`
|
||
|
FullPath string
|
||
|
OutputFilename string
|
||
|
ModifiedAt time.Time
|
||
|
Body string
|
||
|
}
|