mirror of
https://github.com/bitwarden/server.git
synced 2026-02-13 12:23:29 +08:00
11 lines
176 B
C#
11 lines
176 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Table
|
|
{
|
|
public interface IRevisable
|
|
{
|
|
DateTime CreationDate { get; }
|
|
DateTime RevisionDate { get; }
|
|
}
|
|
}
|