2024-10-22 09:28:58 +08:00

23 lines
462 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EntityFrameworkCore.Entities
{
public interface ICreationAudited<TUser> : IHasCreator<TUser>, IHasCreationTime
{
}
public interface IHasCreator<TUser>
{
TUser CreatorId { get; set; }
}
public interface IHasCreationTime
{
DateTime CreationTime { get; set; }
}
}