Created
November 15, 2016 12:50
-
-
Save syaifulnizamyahya/72bb9b5cdaf886c49233c339ffd2dd75 to your computer and use it in GitHub Desktop.
The name 'Set' does not exist in the current context
This file contains hidden or 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 PropertyChanged; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.Linq; | |
| using System.Reflection; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Template10.Mvvm; | |
| using Template10.Services.NavigationService; | |
| using Template10.Utils; | |
| using Windows.UI; | |
| using Windows.UI.Xaml.Media; | |
| using Windows.UI.Xaml.Navigation; | |
| namespace Models | |
| { | |
| [ImplementPropertyChanged] | |
| public class WiFiAccessPoint | |
| { | |
| string _SSID = default(string); | |
| public string SSID { get { return _SSID; } set { Set(ref _SSID, value); } } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment