Files
inp2025/models/room.go
2025-09-10 02:53:48 +08:00

12 lines
132 B
Go

package models
type Room struct {
Creater string
Type string
Status string
}
func (self Room) View() string {
return ""
}