Files

11 lines
309 B
Go
Raw Permalink Normal View History

2019-05-11 18:21:34 +08:00
// Copyright 2016 The Gogs Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2019-05-11 18:21:34 +08:00
package structs
// AddOrgMembershipOption add user to organization options
type AddOrgMembershipOption struct {
// Role is the role to assign to the organization member
2019-05-11 18:21:34 +08:00
Role string `json:"role" binding:"Required"`
}