1
0
mirror of https://github.com/bitwarden/server synced 2026-01-13 05:53:37 +00:00

dotnet format

This commit is contained in:
John Harrington
2025-12-17 10:17:39 -07:00
parent bc22b1dff6
commit c7ba30bc66

View File

@@ -39,7 +39,7 @@ public class SendResponseModel : ResponseModel
Type = send.Type;
AuthType = send.AuthType ?? (!string.IsNullOrWhiteSpace(send.Password)
? AuthType = Core.Tools.Enums.AuthType.Password
: (!string.IsNullOrWhiteSpace(send.Emails)? Core.Tools.Enums.AuthType.Email : Core.Tools.Enums.AuthType.None));
: (!string.IsNullOrWhiteSpace(send.Emails) ? Core.Tools.Enums.AuthType.Email : Core.Tools.Enums.AuthType.None));
Key = send.Key;
MaxAccessCount = send.MaxAccessCount;
AccessCount = send.AccessCount;