Skip to content

Commit

Permalink
Merge pull request #264 from Fruchtzwerg94/patch-1
Browse files Browse the repository at this point in the history
Readme fix for SetPropety method
  • Loading branch information
awcullen authored Dec 10, 2023
2 parents 4a4c051 + 59b75ac commit 35abd6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public class MainViewModel : SubscriptionBase
public ServerStatusDataType ServerServerStatus
{
get { return this.serverServerStatus; }
private set { this.SetValue(ref this.serverServerStatus, value); }
private set { this.SetProperty(ref this.serverServerStatus, value); }
}

private ServerStatusDataType serverServerStatus;
Expand Down Expand Up @@ -173,7 +173,7 @@ public class MainViewModel : SubscriptionBase
public ServerStatusDataType ServerServerStatus
{
get { return this.serverServerStatus; }
private set { this.SetValue(ref this.serverServerStatus, value); }
private set { this.SetProperty(ref this.serverServerStatus, value); }
}

private ServerStatusDataType serverServerStatus;
Expand Down

0 comments on commit 35abd6b

Please sign in to comment.