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