Files
Yi.Framework/Yi.Furion.Net6/Yi.Framework.Infrastructure/Data/Auditing/IMustHaveCreator.cs
2023-04-15 17:35:22 +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; }
}