MobileRadioListItem.cs 214 B

1234567891011
  1. using System;
  2. using Xamarin.Forms;
  3. namespace InABox.Mobile
  4. {
  5. public class MobileRadioListItem : BindableObject
  6. {
  7. public string Text { get; set; }
  8. public bool IsChecked { get; set; }
  9. }
  10. }