From dd136858f1ea40ad3c94191d647487fa4f31926c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 18 Oct 2024 20:33:49 +0200 Subject: Adding upstream version 9.0.0. Signed-off-by: Daniel Baumann --- modules/migration/milestone.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 modules/migration/milestone.go (limited to 'modules/migration/milestone.go') diff --git a/modules/migration/milestone.go b/modules/migration/milestone.go new file mode 100644 index 0000000..34355b8 --- /dev/null +++ b/modules/migration/milestone.go @@ -0,0 +1,18 @@ +// Copyright 2019 The Gitea Authors. All rights reserved. +// Copyright 2018 Jonas Franz. All rights reserved. +// SPDX-License-Identifier: MIT + +package migration + +import "time" + +// Milestone defines a standard milestone +type Milestone struct { + Title string `json:"title"` + Description string `json:"description"` + Deadline *time.Time `json:"deadline"` + Created time.Time `json:"created"` + Updated *time.Time `json:"updated"` + Closed *time.Time `json:"closed"` + State string `json:"state"` // open, closed +} -- cgit v1.2.3