mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-04 08:40:52 +08:00
14 lines
233 B
C#
14 lines
233 B
C#
using System;
|
|
|
|
namespace Yi.Framework.Infrastructure.Data.Auditing;
|
|
|
|
public interface IMustHaveCreator<TCreator> : IMustHaveCreator
|
|
{
|
|
TCreator Creator { get; }
|
|
}
|
|
|
|
public interface IMustHaveCreator
|
|
{
|
|
long CreatorId { get; }
|
|
}
|