mcg/internal/common/outputdevice.go
2026-08-14 11:54:59 +02:00

14 lines
207 B
Go

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