2025-04-15 23:49:28 +03:00

9 lines
185 B
Go

package project
type Project struct {
ID uint32 `json:"id"`
Name string `json:"name"`
Description *string `json:"description"`
Key string `json:"key"`
}