Files
trikotwaschliste/models/washitem.go
2020-10-09 15:10:13 +02:00

11 lines
170 B
Go

package models
import "time"
type Washlist struct {
Id int `json:"id"`
Person string `json:"person"`
Date time.Time `json:"date"`
Washed string `json:"iswashed"`
}