mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 01:52:49 -05:00
Run formatting (#2230)
This commit is contained in:
@ -1,21 +1,20 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Bit.Core.Models.Api
|
||||
namespace Bit.Core.Models.Api;
|
||||
|
||||
public class PushUpdateRequestModel
|
||||
{
|
||||
public class PushUpdateRequestModel
|
||||
public PushUpdateRequestModel()
|
||||
{ }
|
||||
|
||||
public PushUpdateRequestModel(IEnumerable<string> deviceIds, string organizationId)
|
||||
{
|
||||
public PushUpdateRequestModel()
|
||||
{ }
|
||||
|
||||
public PushUpdateRequestModel(IEnumerable<string> deviceIds, string organizationId)
|
||||
{
|
||||
DeviceIds = deviceIds;
|
||||
OrganizationId = organizationId;
|
||||
}
|
||||
|
||||
[Required]
|
||||
public IEnumerable<string> DeviceIds { get; set; }
|
||||
[Required]
|
||||
public string OrganizationId { get; set; }
|
||||
DeviceIds = deviceIds;
|
||||
OrganizationId = organizationId;
|
||||
}
|
||||
|
||||
[Required]
|
||||
public IEnumerable<string> DeviceIds { get; set; }
|
||||
[Required]
|
||||
public string OrganizationId { get; set; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user