Skip to content

Instantly share code, notes, and snippets.

@npatta01
Created May 1, 2013 03:22
Show Gist options
  • Save npatta01/5493566 to your computer and use it in GitHub Desktop.
Save npatta01/5493566 to your computer and use it in GitHub Desktop.
public class VideoViewModel : ViewModelBase
{
public RelayCommand Navigate { get; private set; }
public string DownloadUrl
{
get { return _video.DownloadUrl; }
}
public string Title
{
get { return _video.Title; }
}
public string Duration
{
get { return "Duration:" + _video.Duration + "secs"; }
}
public string Description
{
get { return "Description:" + _video.Description; }
}
public string ImageUrl
{
get { return _video.ImageUrl; }
}
public string Authors
{ ... }
.....
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment