1
0
mirror of https://github.com/bitwarden/server synced 2026-02-08 04:33:23 +00:00

Fix broken test, delete inapplicable test

This commit is contained in:
Sven
2026-01-15 00:18:00 -06:00
parent 982ff747eb
commit 80c02a79ec
2 changed files with 12 additions and 35 deletions

View File

@@ -5,10 +5,10 @@ namespace Bit.Core.AdminConsole.Models.Data.Organizations.Policies;
public class PolicyData
{
public Guid OrganizationId { get; init; }
public PolicyType Type { get; init; }
public bool Enabled { get; init; }
public string? Data { get; init; }
public Guid OrganizationId { get; set; }
public PolicyType Type { get; set; }
public bool Enabled { get; set; }
public string? Data { get; set; }
public T GetDataModel<T>() where T : IPolicyDataModel, new()
{