added Pair

This commit is contained in:
milarin 2023-01-13 10:58:40 +01:00
parent 222c1c8a7c
commit 5eb2822653

6
pair.go Normal file
View File

@ -0,0 +1,6 @@
package model
type Pair[A, B any] struct {
First A
Second B
}