Search Apps Documentation Source Content File Folder Download Copy Actions Download

filter.gno

0.14 Kb · 9 lines
1package impl
2
3type FilterByTier struct {
4	Tier string
5}
6
7func NewFilterByTier(tier string) FilterByTier {
8	return FilterByTier{Tier: tier}
9}