2021-08-11 06:31:40 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-08-11 06:31:40 +05:30
|
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
|
|
// Note contains information related to a git note
|
|
|
|
|
type Note struct {
|
2025-09-06 09:52:41 -07:00
|
|
|
// The content message of the git note
|
|
|
|
|
Message string `json:"message"`
|
|
|
|
|
// The commit that this note is attached to
|
|
|
|
|
Commit *Commit `json:"commit"`
|
2021-08-11 06:31:40 +05:30
|
|
|
}
|