Remove unnecessaray parameter of TizenDeviceInfo
[platform/upstream/xamarin-forms.git] / Xamarin.Forms.Pages / DirectoryPage.cs
1 namespace Xamarin.Forms.Pages
2 {
3         public class DirectoryPage : DataPage
4         {
5                 public static readonly BindableProperty IsGroupingEnabledProperty = BindableProperty.Create(nameof(IsGroupingEnabled), typeof(bool), typeof(DirectoryPage), default(bool));
6
7                 public bool IsGroupingEnabled
8                 {
9                         get { return (bool)GetValue(IsGroupingEnabledProperty); }
10                         set { SetValue(IsGroupingEnabledProperty, value); }
11                 }
12         }
13 }