Files
trikotwaschliste/models/washitem.go

10 lines
150 B
Go

package models
import "time"
type Washlist struct {
Person string `json:"person"`
Date time.Time `json:"date"`
IsWashed bool `json:"iswashed"`
}