2021-08-11 01:01:40 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-08-11 01:01:40 +00:00
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
// Note contains information related to a git note
|
|
|
|
type Note struct {
|
|
|
|
Message string `json:"message"`
|
|
|
|
Commit *Commit `json:"commit"`
|
|
|
|
}
|