using System; using Xamarin.Forms; namespace InABox.Mobile { public class MobileRadioListItem : BindableObject { public string Text { get; set; } public bool IsChecked { get; set; } } }