mirror of
https://github.com/bitwarden/server
synced 2025-12-11 22:03:38 +00:00
17 lines
400 B
C#
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
|
|
};
|
|
}
|
|
}
|
|
}
|