mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 17:12:49 -05:00

* [Reset Password v1] - Make auto enrollment required when enabled * Removed unnecessary imports
11 lines
248 B
C#
11 lines
248 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class ResetPasswordDataModel
|
|
{
|
|
[Display(Name = "ResetPasswordAutoEnrollCheckbox")]
|
|
public bool AutoEnrollEnabled { get; set; }
|
|
}
|
|
}
|