2024-07-09 22:43:50 +03:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
// Project represents a project
|
|
|
|
type Project struct {
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Description string `json:"description"`
|
2024-07-10 16:12:59 +03:00
|
|
|
TemplateType uint8 `json:"template_type"`
|
|
|
|
CardType uint8 `json:"card_type"`
|
2024-07-14 14:59:53 +03:00
|
|
|
OwnerID int64 `json:"owner_id"`
|
|
|
|
RepoID int64 `json:"repo_id"`
|
|
|
|
CreatorID int64 `json:"creator_id"`
|
|
|
|
IsClosed bool `json:"is_closed"`
|
|
|
|
Type uint8 `json:"type"`
|
|
|
|
|
|
|
|
CreatedUnix int64 `json:"created_unix"`
|
|
|
|
UpdatedUnix int64 `json:"updated_unix"`
|
|
|
|
ClosedDateUnix int64 `json:"closed_date_unix"`
|
2024-07-09 22:43:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type CreateProjectOption struct {
|
2024-07-14 16:50:32 +03:00
|
|
|
// required:true
|
2024-07-09 22:43:50 +03:00
|
|
|
Title string `json:"title" binding:"Required;MaxSize(100)"`
|
|
|
|
Content string `json:"content"`
|
|
|
|
TemplateType uint8 `json:"template_type"`
|
|
|
|
CardType uint8 `json:"card_type"`
|
|
|
|
}
|