1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-17 07:30:59 -05:00

new device logged in email notification

This commit is contained in:
Kyle Spearrin
2019-01-24 22:37:49 -05:00
parent 43967ebbc1
commit b19628c6f8
9 changed files with 110 additions and 1 deletions

View File

@ -0,0 +1,11 @@
namespace Bit.Core.Models.Mail
{
public class NewDeviceLoggedInModel : BaseMailModel
{
public string TheDate { get; set; }
public string TheTime { get; set; }
public string TimeZone { get; set; }
public string IpAddress { get; set; }
public string DeviceType { get; set; }
}
}