12 lines
206 B
Go
12 lines
206 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Washlist struct {
|
|
Id int `json:"id"`
|
|
Person string `json:"person"`
|
|
Date time.Time `json:"date"`
|
|
Washed int `json:"iswashed"`
|
|
DateString string `json:"datestring"`
|
|
}
|