Skip to content

Instantly share code, notes, and snippets.

@vardanator
Last active February 21, 2018 05:30
Show Gist options
  • Select an option

  • Save vardanator/b8348a126cfe849e4e7a56a9e8dde88e to your computer and use it in GitHub Desktop.

Select an option

Save vardanator/b8348a126cfe849e4e7a56a9e8dde88e to your computer and use it in GitHub Desktop.
// Cached representation of an Item
// Full Item object (with title, description, comments etc.)
// could be fetched from the database
struct Item
{
// ID_TYPE is the type of Item's unique id, might be an integer, or a string
ID_TYPE id;
int rating;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment