summaryrefslogtreecommitdiff
path: root/internal/models/claudomator.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/models/claudomator.go')
-rw-r--r--internal/models/claudomator.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/internal/models/claudomator.go b/internal/models/claudomator.go
new file mode 100644
index 0000000..0883de3
--- /dev/null
+++ b/internal/models/claudomator.go
@@ -0,0 +1,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"`
+}