Files
server/src/Core/Models/Mail/NewDeviceLoggedInModel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
298 B
C#
Raw Normal View History

namespace Bit.Core.Models.Mail;
2022-08-29 16:06:55 -04:00
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; }
}