Skip to content

Instantly share code, notes, and snippets.

@JoachimL
Created August 30, 2013 09:06
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 JoachimL/6387893 to your computer and use it in GitHub Desktop.
Save JoachimL/6387893 to your computer and use it in GitHub Desktop.
namespace WebApi.OData.Models
{
public class MoviePresentationModel
{
public int Id { get; set; }
public string Title { get; set; }
public int YearOfRelease { get; set; }
public double AverageRating { get; set; }
public string[] Actors { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment