Last active
August 29, 2015 14:27
-
-
Save Injac/ce6b12f02203d99746e1 to your computer and use it in GitHub Desktop.
QuickFix for Syncfusion UWP Sample Browser
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Windows.UI.Xaml.Controls; | |
namespace Common | |
{ | |
public class SampleViewItem | |
{ | |
public string Type | |
{ | |
get; | |
set; | |
} | |
public string Header | |
{ | |
get; | |
set; | |
} | |
public bool IsNew | |
{ | |
get; | |
set; | |
} | |
public bool IsUpdated | |
{ | |
get; | |
set; | |
} | |
public bool IsPreview | |
{ | |
get; | |
set; | |
} | |
public bool IsVS2013 | |
{ | |
get; | |
set; | |
} | |
//The following two propterties had to be added | |
public Control Content | |
{ | |
get; set; | |
} | |
public bool EnableOptions | |
{ | |
get; set; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment