mirror of
https://github.com/bitwarden/server
synced 2025-12-16 16:23:31 +00:00
* use handlebars helper for plurality of text rather than logic within the template * Remove `TaskCountPlural` - unused
13 lines
323 B
C#
13 lines
323 B
C#
namespace Bit.Core.Models.Mail;
|
|
|
|
public class SecurityTaskNotificationViewModel : BaseMailModel
|
|
{
|
|
public string OrgName { get; set; }
|
|
|
|
public int TaskCount { get; set; }
|
|
|
|
public List<string> AdminOwnerEmails { get; set; }
|
|
|
|
public string ReviewPasswordsUrl => $"{WebVaultUrl}/browser-extension-prompt";
|
|
}
|