package common type OutputDevice struct { ID string Name string Enabled bool } func NewOutputDevice(id string, name string) *OutputDevice { return &OutputDevice{ ID: id, Name: name, } }