From cbfb60a78e77db62adf850d01f1a5e8d2ded0661 Mon Sep 17 00:00:00 2001 From: Mayue Date: Thu, 11 May 2023 14:41:06 +0800 Subject: [PATCH] fix:wrong spell --- .../Model/UserModel.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BuildingBlocks/StackSdks/Auth/Masa.BuildingBlocks.StackSdks.Auth.Contracts/Model/UserModel.cs b/src/BuildingBlocks/StackSdks/Auth/Masa.BuildingBlocks.StackSdks.Auth.Contracts/Model/UserModel.cs index 282358dd8..866dbc9d3 100644 --- a/src/BuildingBlocks/StackSdks/Auth/Masa.BuildingBlocks.StackSdks.Auth.Contracts/Model/UserModel.cs +++ b/src/BuildingBlocks/StackSdks/Auth/Masa.BuildingBlocks.StackSdks.Auth.Contracts/Model/UserModel.cs @@ -11,7 +11,7 @@ public class UserModel public string DisplayName { get; set; } - public string? StaffDislpayName { get; set; } + public string? StaffDisplayName { get; set; } public string Account { get; set; } @@ -58,7 +58,7 @@ public UserModel( Guid id, string? name, string displayName, - string staffDislpayName, + string staffDisplayName, string account, GenderTypes gender, string avatar, @@ -73,7 +73,7 @@ public UserModel( Id = id; Name = name; DisplayName = displayName; - StaffDislpayName = staffDislpayName; + StaffDisplayName = staffDisplayName; Account = account; Gender = gender; Avatar = avatar;