mirror of
https://github.com/bitwarden/android.git
synced 2025-01-07 16:57:35 +03:00
387dc2f59c
* Model & service support for policies * Formatting * Changes to match existing service and model patterns
14 lines
381 B
C#
14 lines
381 B
C#
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; }
|
|
}
|
|
}
|