mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 15:13:19 +08:00
* Attach permission context to project lists. * restrict service-account actions * Fix project permission details * Add getters and setters * dotnet format * Fix admin create unassigned secret (#2872)
11 lines
246 B
C#
11 lines
246 B
C#
using Bit.Core.SecretsManager.Entities;
|
|
|
|
namespace Bit.Core.SecretsManager.Models.Data;
|
|
|
|
public class ProjectPermissionDetails
|
|
{
|
|
public Project Project { get; set; }
|
|
public bool Read { get; set; }
|
|
public bool Write { get; set; }
|
|
}
|