blob: 0883de37a89fa7db832a860a25f0f9226b6ea2b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package models
import "time"
type ClaudomatorStory struct {
ID string `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
Status string `json:"status"`
ProjectID string `json:"project_id"`
BranchName string `json:"branch_name"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
|