暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

session.go 399B

12345678910111213141516171819202122
  1. package domain
  2. type Session struct {
  3. ID string `json:"id"`
  4. ParentID string `json:"parentID,omitempty"`
  5. Title string `json:"title,omitempty"`
  6. }
  7. type SessionStatus struct {
  8. ID string `json:"id"`
  9. Status string `json:"status"`
  10. }
  11. type Todo struct {
  12. ID string `json:"id"`
  13. Text string `json:"text"`
  14. }
  15. type FileDiff struct {
  16. Path string `json:"path"`
  17. Diff string `json:"diff"`
  18. }