bitwarden-android/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; }
}
}