mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 01:16:22 +08:00
23 lines
628 B
C#
23 lines
628 B
C#
|
|
using System;
|
|||
|
|
using Bit.Core.Enums;
|
|||
|
|
using Bit.Core.Utilities;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Table
|
|||
|
|
{
|
|||
|
|
public class Policy : ITableObject<Guid>
|
|||
|
|
{
|
|||
|
|
public Guid Id { get; set; }
|
|||
|
|
public Guid OrganizationId { get; set; }
|
|||
|
|
public PolicyType Type { get; set; }
|
|||
|
|
public string Data { get; set; }
|
|||
|
|
public bool Enabled { get; set; }
|
|||
|
|
public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
|
|||
|
|
public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow;
|
|||
|
|
|
|||
|
|
public void SetNewId()
|
|||
|
|
{
|
|||
|
|
Id = CoreHelpers.GenerateComb();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|