Export

/app/lib/svc/model.go (179 B)

 1
2
3
4
5
6
7
8
9
10
11
12
13
package svc

import "fmt"

type Model interface {
fmt.Stringer
TitleString() string
Strings() []string
ToCSV() ([]string, [][]string)
ToData() []any
}

type ModelSeq []Model