mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 01:00:51 +08:00
14 lines
213 B
C#
14 lines
213 B
C#
using System;
|
|
|
|
namespace Yi.Framework.Infrastructure.Data.Auditing;
|
|
|
|
public interface IMayHaveCreator<TCreator>
|
|
{
|
|
TCreator Creator { get; }
|
|
}
|
|
|
|
public interface IMayHaveCreator
|
|
{
|
|
long? CreatorId { get; }
|
|
}
|