mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 07:33:11 +08:00
8 lines
135 B
C#
8 lines
135 B
C#
namespace Bit.Core.Entities;
|
|
|
|
public interface IRevisable
|
|
{
|
|
DateTime CreationDate { get; }
|
|
DateTime RevisionDate { get; }
|
|
}
|