mirror of
https://github.com/bitwarden/server.git
synced 2025-04-24 22:32:22 -05:00

* Add untrust devices endpoint * Fix tests * Update src/Core/Auth/UserFeatures/DeviceTrust/UntrustDevicesCommand.cs Co-authored-by: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com> * Fix whitespace --------- Co-authored-by: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com>
12 lines
226 B
C#
12 lines
226 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
#nullable enable
|
|
|
|
namespace Bit.Api.Auth.Models.Request;
|
|
|
|
public class UntrustDevicesRequestModel
|
|
{
|
|
[Required]
|
|
public IEnumerable<Guid> Devices { get; set; } = null!;
|
|
}
|