model/pair.go
2023-01-13 10:58:40 +01:00

7 lines
66 B
Go

package model
type Pair[A, B any] struct {
First A
Second B
}