using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Bit.Core.Models.Api.Public
{
public abstract class PolicyBaseModel
{
///
/// Determines if this policy is enabled and enforced.
///
[Required]
public bool? Enabled { get; set; }
///
/// Data for the policy.
///
[StringLength(300)]
public Dictionary Data { get; set; }
}
}