1// Copyright 2016 The Gogs Authors. All rights reserved.
2// SPDX-License-Identifier: MIT
3
4package context
5
6import "forgejo.org/models/organization"
7
8// APIOrganization contains organization and team
9type APIOrganization struct {
10 Organization *organization.Organization
11 Team *organization.Team
12}