mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00

* Added null check on header-based knowndevice call to match query-string implementation. * Updated to use model binding instead of individual inputs. * Linting.
17 lines
362 B
C#
17 lines
362 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Api.Models.Request;
|
|
|
|
public class KnownDeviceRequestModel
|
|
{
|
|
[Required]
|
|
[FromHeader(Name = "X-Request-Email")]
|
|
public string Email { get; set; }
|
|
|
|
[Required]
|
|
[FromHeader(Name = "X-Device-Identifier")]
|
|
public string DeviceIdentifier { get; set; }
|
|
|
|
}
|