1
0
mirror of https://github.com/go-gitea/gitea synced 2025-02-25 08:49:16 +01:00

12 lines
319 B
Go

// 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"`
}