mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00: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; }
|
|
}
|
|
}
|