mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-06 01:30:53 +08:00
9 lines
142 B
C#
9 lines
142 B
C#
namespace Yi.Framework.Infrastructure.Data.Auditing;
|
|
|
|
|
|
public interface IHasModificationTime
|
|
{
|
|
|
|
DateTime? LastModificationTime { get; }
|
|
}
|