aboutsummaryrefslogtreecommitdiff
blob: 0179028a7d4d55a9bed36988f464a55df5cae8c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Contains the model of a USE flag

package models

type Useflag struct {
	Id                       string `pg:",pk"`
	Name                     string
	Scope                    string
	Description              string
	UseExpand                string
	Package                  string
}