type Project struct {
ProjectID int `json:"project_id"`
Name string `json:"name"`
Description string `json:"description"`
OwnerID int `json:"owner_id"`
TeamID int `json:"team_id"`
Deleted int `json:"deleted"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
type Subscription struct {
SubscriptionID int `json:"subscription_id"`
Name string `json:"name"`
Price int `json:"price"`
Deleted int `json:"deleted"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
type Team struct {
TeamID int `json:"team_id"`
Name string `json:"name"`
Description string `json:"description"`
OwnerID int `json:"owner_id"`
SubscriptionID int `json:"subscription_id"`
Deleted int `json:"deleted"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}