1
0
mirror of https://github.com/bitwarden/server synced 2026-01-11 21:13:50 +00:00
Files
server/src/Core/Models/Mail/AdminResetPasswordViewModel.cs
2025-07-08 10:25:59 -04:00

11 lines
271 B
C#

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Models.Mail;
public class AdminResetPasswordViewModel : BaseMailModel
{
public string UserName { get; set; }
public string OrgName { get; set; }
}