mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
309 B
10 lines
309 B
// Copyright 2016 The Gogs Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package structs |
|
|
|
// AddOrgMembershipOption add user to organization options |
|
type AddOrgMembershipOption struct { |
|
// Role is the role to assign to the organization member |
|
Role string `json:"role" binding:"Required"` |
|
}
|
|
|