* refact: generalized back end structs * refact: fixed front end type, removed dead code * removed test image folder * refact: removed dead structs
		
			
				
	
	
		
			16 lines
		
	
	
		
			345 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			345 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package entities
 | 
						|
 | 
						|
type Group struct {
 | 
						|
	Id        string `json:"id"`
 | 
						|
	ParentId  string `json:"parentId"`
 | 
						|
	ProjectId string `json:"projectId"`
 | 
						|
	Name      string `json:"name"`
 | 
						|
	Order     int    `json:"order"`
 | 
						|
}
 | 
						|
 | 
						|
type GroupCollection struct {
 | 
						|
	Id        string  `json:"id"`
 | 
						|
	Groups    []Group `json:"groups"`
 | 
						|
	ProjectId string  `json:"projectId"`
 | 
						|
}
 |