2021-08-11 06:31:40 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// 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 {
|
|
|
|
Message string `json:"message"`
|
|
|
|
Commit *Commit `json:"commit"`
|
|
|
|
}
|