1
0
mirror of https://github.com/bitwarden/server synced 2025-12-11 22:03:38 +00:00
Files
server/src/Api/Models/Public/Request/AssociationWithPermissionsRequestModel.cs
2021-12-14 16:05:07 +01:00

17 lines
400 B
C#

using Bit.Core.Models.Data;
namespace Bit.Api.Models.Public.Request
{
public class AssociationWithPermissionsRequestModel : AssociationWithPermissionsBaseModel
{
public SelectionReadOnly ToSelectionReadOnly()
{
return new SelectionReadOnly
{
Id = Id.Value,
ReadOnly = ReadOnly.Value
};
}
}
}