mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
16 lines
354 B
C#
16 lines
354 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
|
|
};
|
|
}
|
|
}
|