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"` }