Created
November 26, 2019 19:46
-
-
Save rdelrosario/470e6cfd0f55cc3c6697905b39e86ce7 to your computer and use it in GitHub Desktop.
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.ComponentModel; | |
namespace ExtendedSegmentedTabControl.Models | |
{ | |
public class TabOption: INotifyPropertyChanged | |
{ | |
public string Name { get; set; } | |
public bool IsSelected { get; set; } | |
public event PropertyChangedEventHandler PropertyChanged; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment