// Copyright 2016 The Gogs Authors. All rights reserved.// Use of this source code is governed by a MIT-style// license that can be found in the LICENSE file.packagegogstypeTeamstruct{IDint64`json:"id"`Namestring`json:"name"`Descriptionstring`json:"description"`Permissionstring`json:"permission"`}typeCreateTeamOptionstruct{Namestring`json:"name" binding:"Required;AlphaDashDot;MaxSize(30)"`Descriptionstring`json:"description" binding:"MaxSize(255)"`Permissionstring`json:"permission"`}