mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 05:13:31 +00:00
* Model & service support for policies * Formatting * Changes to match existing service and model patterns
27 lines
671 B
C#
27 lines
671 B
C#
using System.Collections.Generic;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Models.Domain
|
|
{
|
|
public class Policy : Domain
|
|
{
|
|
public Policy() { }
|
|
|
|
public Policy(PolicyData obj)
|
|
{
|
|
Id = obj.Id;
|
|
OrganizationId = obj.OrganizationId;
|
|
Type = obj.Type;
|
|
Data = obj.Data;
|
|
Enabled = obj.Enabled;
|
|
}
|
|
|
|
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; }
|
|
}
|
|
}
|