From f7cd2e4cae00239c7de9e4c2bb7bcd6f3f1e9b30 Mon Sep 17 00:00:00 2001 From: RMBGAME Date: Mon, 21 Aug 2023 16:32:25 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Misc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BD.SteamClient/Models/AuthorizedDevice.cs | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/BD.SteamClient/Models/AuthorizedDevice.cs b/src/BD.SteamClient/Models/AuthorizedDevice.cs index 360ef8b0..14d4cbdd 100644 --- a/src/BD.SteamClient/Models/AuthorizedDevice.cs +++ b/src/BD.SteamClient/Models/AuthorizedDevice.cs @@ -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); + } /// /// 用户名