Skip to content

Instantly share code, notes, and snippets.

@arbarlow
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arbarlow/a06fd182c4a5911304e4 to your computer and use it in GitHub Desktop.
Save arbarlow/a06fd182c4a5911304e4 to your computer and use it in GitHub Desktop.
package models
import (
"time"
)
type Reel struct {
ID string `json:"id"`
Name string `json:"name"`
Folder string `json:"folder"`
AuthProvider AuthProvider `json:"-"`
AuthProviderID string `json:"-"`
CreatedAt time.Time `json:"created"`
UpdatedAt time.Time `json:"updated"`
Owner User `json:"user,omitempty"`
OwnerID string `json:"-"`
Photos []Photo `json:"photos,omitempty"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment