mirror of
https://github.com/bitwarden/server.git
synced 2026-02-10 19:03:18 +08:00
11 lines
172 B
C#
11 lines
172 B
C#
using System;
|
|
|
|
namespace Bit.Core.Entities
|
|
{
|
|
public interface IRevisable
|
|
{
|
|
DateTime CreationDate { get; }
|
|
DateTime RevisionDate { get; }
|
|
}
|
|
}
|