2016-03-26 01:04:02 +03:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2022-11-27 21:20:29 +03:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-03-26 01:04:02 +03:00
|
|
|
|
|
|
|
package context
|
|
|
|
|
2022-03-29 09:29:02 +03:00
|
|
|
import "code.gitea.io/gitea/models/organization"
|
2016-03-26 01:04:02 +03:00
|
|
|
|
2016-11-25 09:51:01 +03:00
|
|
|
// APIOrganization contains organization and team
|
2016-03-26 01:04:02 +03:00
|
|
|
type APIOrganization struct {
|
2022-03-29 09:29:02 +03:00
|
|
|
Organization *organization.Organization
|
|
|
|
Team *organization.Team
|
2016-03-26 01:04:02 +03:00
|
|
|
}
|