mirror of
https://github.com/strongdm/comply
synced 2024-11-05 23:45:25 +00:00
16 lines
315 B
Go
16 lines
315 B
Go
|
package model
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Document struct {
|
||
|
Name string `yaml:"name"`
|
||
|
Acronym string `yaml:"acronym"`
|
||
|
|
||
|
Revisions []Revision `yaml:"majorRevisions"`
|
||
|
Satisfies Satisfaction `yaml:"satisfies"`
|
||
|
FullPath string
|
||
|
OutputFilename string
|
||
|
ModifiedAt time.Time
|
||
|
Body string
|
||
|
}
|