private void OnReportSelected(GUIListItem item, GUIControl parent) { OnlineVideosWebservice.Report report = item.TVTag as OnlineVideosWebservice.Report; if (report != null) { GUIPropertyManager.SetProperty("#OnlineVideos.owner", string.Empty); if (!string.IsNullOrEmpty(report.Message)) { GUIPropertyManager.SetProperty("#OnlineVideos.desc", report.Message); } else { GUIPropertyManager.SetProperty("#OnlineVideos.desc", string.Empty); } } }
public ReportViewModel(OnlineVideosWebservice.Report report) { Report = report; }