10 lines
117 B
Go
10 lines
117 B
Go
|
package models
|
||
|
|
||
|
type Filter struct {
|
||
|
Tags []*Tag
|
||
|
}
|
||
|
|
||
|
type ParticipantFilter struct {
|
||
|
Attributes map[string]string
|
||
|
}
|