Files
Yi.Framework/Yi.Furion.Rbac/Yi.Framework.Infrastructure/Data/Auditing/IMustHaveCreator.cs
2023-04-13 21:12:06 +08:00

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; }
}