mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 09:53:14 +08:00
20 lines
517 B
C#
20 lines
517 B
C#
|
|
using System;
|
|||
|
|
using Bit.Core.Utilities;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Table
|
|||
|
|
{
|
|||
|
|
public class Group : IDataObject<Guid>
|
|||
|
|
{
|
|||
|
|
public Guid Id { get; set; }
|
|||
|
|
public Guid OrganizationId { get; set; }
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
|
|||
|
|
public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow;
|
|||
|
|
|
|||
|
|
public void SetNewId()
|
|||
|
|
{
|
|||
|
|
Id = CoreHelpers.GenerateComb();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|