| 12345678910111213141516171819202122 |
- package domain
-
- type Session struct {
- ID string `json:"id"`
- ParentID string `json:"parentID,omitempty"`
- Title string `json:"title,omitempty"`
- }
-
- type SessionStatus struct {
- ID string `json:"id"`
- Status string `json:"status"`
- }
-
- type Todo struct {
- ID string `json:"id"`
- Text string `json:"text"`
- }
-
- type FileDiff struct {
- Path string `json:"path"`
- Diff string `json:"diff"`
- }
|