model/pair.go

7 lines
66 B
Go
Raw Permalink Normal View History

2023-01-13 10:58:40 +01:00
package model
type Pair[A, B any] struct {
First A
Second B
}