mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
23 lines
686 B
C#
23 lines
686 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models
|
|
{
|
|
public class UpdateTwoFactorRequestModel : IValidatableObject
|
|
{
|
|
[Required]
|
|
public string MasterPasswordHash { get; set; }
|
|
[Required]
|
|
public bool? Enabled { get; set; }
|
|
public string Token { get; set; }
|
|
|
|
public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
|
|
{
|
|
if(Enabled.HasValue && Enabled.Value && string.IsNullOrWhiteSpace(Token))
|
|
{
|
|
yield return new ValidationResult("Token is required.", new[] { "Token" });
|
|
}
|
|
}
|
|
}
|
|
}
|