Loggest thine Stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
734 B

2 years ago
2 years ago
2 years ago
  1. package models
  2. type ProjectUpdate struct {
  3. Name *string `json:"name,omitempty"`
  4. OwnerID *string `json:"ownerId,omitempty"`
  5. Status *Status `json:"status,omitempty"`
  6. Description *string `json:"description,omitempty"`
  7. AddTags []string `json:"addTags"`
  8. RemoveTags []string `json:"removeTags"`
  9. }
  10. type RequirementUpdate struct {
  11. Name *string `json:"name"`
  12. Description *string `json:"description"`
  13. Status *Status `json:"status"`
  14. IsCoarse *bool `json:"isCoarse"`
  15. AggregateRequired *int `json:"aggregateRequired"`
  16. AddTags []string `json:"addTags"`
  17. RemoveTags []string `json:"removeTags"`
  18. ProjectID *int `json:"projectId"`
  19. }