mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-09 19:15:58 +08:00
9 lines
327 B
Go
9 lines
327 B
Go
package workflow
|
|
|
|
// Profile is an Apple Configuration profile
|
|
type Profile struct {
|
|
UUID string `plist:"-" json:"profile_uuid,omitempty" db:"profile_uuid"`
|
|
PayloadIdentifier string `json:"payload_identifier" db:"payload_identifier"`
|
|
ProfileData string `json:"profile_data,omitempty" db:"profile_data"`
|
|
}
|