mirror of
https://github.com/m5stack/StackChan.git
synced 2026-04-27 11:02:40 +00:00
12 lines
257 B
Go
12 lines
257 B
Go
/*
|
|
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
package model
|
|
|
|
type DeviceInfo struct {
|
|
Mac string `json:"mac" v:"required" description:"Mac address"`
|
|
Name string `json:"name" v:"required" description:"Name"`
|
|
}
|