Skip to content

Commit

Permalink
🚧 Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbadmin committed Aug 21, 2023
1 parent c0d1900 commit f7cd2e4
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/BD.SteamClient/Models/AuthorizedDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,25 @@ public string? Remark
set => this.RaiseAndSetIfChanged(ref _Remark, value);
}

public string? SteamID { get; set; }
string? _SteamID;

public string? SteamID
{
get => _SteamID;
set => this.RaiseAndSetIfChanged(ref _SteamID, value);
}

public string? ShowName { get; set; }

public SteamMiniProfile? MiniProfile { get; set; }

public string? SteamNickName { get; set; }
string? _SteamNickName;

public string? SteamNickName
{
get => _SteamNickName;
set => this.RaiseAndSetIfChanged(ref _SteamNickName, value);
}

/// <summary>
/// 用户名
Expand Down

0 comments on commit f7cd2e4

Please sign in to comment.