Files
trikotwaschliste/models/washitem.go
2020-10-09 16:06:31 +02:00

11 lines
167 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"`
}