1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-01 04:27:39 +02:00
bitwarden-mobile/src/Core/Models/Response/PolicyResponse.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
381 B
C#
Raw Normal View History

using System.Collections.Generic;
using Bit.Core.Enums;
namespace Bit.Core.Models.Response
{
public class PolicyResponse
{
public string Id { get; set; }
public string OrganizationId { get; set; }
public PolicyType Type { get; set; }
public Dictionary<string, object> Data { get; set; }
public bool Enabled { get; set; }
}
}