aboutsummaryrefslogtreecommitdiffstats
path: root/modules/structs/repo_note.go
blob: bddc945a5c709d349a2ae16adaf2959b0c606828 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2021 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package structs

// Note contains information related to a git note
type Note struct {
	Message string  `json:"message"`
	Commit  *Commit `json:"commit"`
}