12 lines
132 B
Go
12 lines
132 B
Go
package models
|
|
|
|
type Room struct {
|
|
Creater string
|
|
Type string
|
|
Status string
|
|
}
|
|
|
|
func (self Room) View() string {
|
|
return ""
|
|
}
|