mirror of
https://github.com/bitwarden/android.git
synced 2025-01-08 17:27:39 +03:00
15 lines
381 B
C#
15 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; }
|
|||
|
}
|
|||
|
}
|